
object-c
Qyee16
给自己一个自己的家
linux/window/mac;c++/ VC/Qt/object-c/JAVA
展开
-
object-c Error --->>> duplicate symbol _kReachabilityChangedNotification in:
在使用Reachability加入了h/m文件到工程中,编译出现如下错误,解决方法如下:You can remove any of the two Reachability.m files from the compilation.Go to Project Settings -> Build Phases -> Compile Sources -> Select Rea转载 2015-02-27 14:51:48 · 2743 阅读 · 0 评论 -
[Xcode]打包错误 -ERROR ITMS 记录
在iPhone开发中,Xcode的使用很多错误,把自己遇到的问题都总结一下,方便大家。 1.ERROR ITMS-90188 *ERROR ITMS-90188: “Invalid Pre-Release Build. The build version (CFBundleVersion)’1.0’ in the info.plist file must be higher than the b原创 2016-08-05 00:48:14 · 1745 阅读 · 0 评论 -
[xcode]Archives ipa面板
使用xcode打包ipa文件成功,不争气的xcode崩溃了。对于这种情况,我相信绝大多数的程序员都会再次打开xcode-》Product-》Archive再次打包,使用Xcode一年多了,我也是这样做的。 每次遇到Xcode崩溃,刚好在此时。有没有方法可以打开Archives面板呢?真的有,啦啦啦。。。。。方法:Xcode-》Windoe-》Organizer再也不用担心Xcode崩溃了。原创 2016-08-05 00:04:11 · 1545 阅读 · 0 评论 -
[iPhone]Xcode process launch failed: Security
是在手机端:Settings → General → DeviceManagement → DeveloperApp → Trust.原创 2016-07-30 01:24:46 · 895 阅读 · 0 评论 -
Cocoapods版本回退/降低
升级了PodV1.1.0后,Pod的关键字出现了问题,使用新语法就是出现问题,如废弃的link_with,无奈,暂时只能降低Pod版本。一. 移除pod组件,查看pod的安装位置$ which pod手动删除这个组件 :$ sudo rm -rf 二. 移除 RubyGems 中的 Cocoapods程序包1、查看gems中本地程序包$ gem list原创 2016-07-30 01:21:48 · 8389 阅读 · 0 评论 -
【iOS--pod】使用初体验 --> libjingle_peerconnection
想要使用iOS上进行WebRTC开发,有人博客说cocoaPod已经支持,那就用pod吧,进而出现下面问题,先贴一个标准的写法platform :ios, '8.0'xcodeproj './p2pVideo/p2pVideo.xcodeproj'target 'p2pVideo' do pod 'libjingle_peerconnection'end注意点:原创 2016-05-15 21:58:24 · 3043 阅读 · 0 评论 -
[object-c]头文件相互引用
OC和C++/Java确实很多不一样的地方,踩了不少坑。即使一个简单的莫名的错误问题,有可能会耗费很多时间。 如两个类需要相互引用头文件时,会报错:Expected a type,哪能想到是互相引用的问题呢? 踩过了,就知道怎么解决了,在一个文件中,使用前置声明,如: @class ConfigManager; 简单,但是耗费原创 2016-01-30 23:26:44 · 1365 阅读 · 0 评论 -
[iphone]iphone真机调试“无法安装”问题-解决
真机运行App总会出现真机ios版本低的问题,未把测试机加入测试机、arm64配置、签名配置等问题,在机器上安装时只显示“无法安装”而不知道什么原因。 “蒲公英”提供了福利工具,真机运行日志,可以安装到执行的运行日志。下面是一个错误的查找过程:--------------------------------------------------------------原创 2015-11-11 12:46:50 · 2036 阅读 · 0 评论 -
[object-c]格式化时间
object-c date原创 2015-06-30 16:27:20 · 609 阅读 · 0 评论 -
[objective-c]获取ip地址
在获取iphone的ip地址时,发现国内的文章都是一个方法,而且巨复杂,以前看到国内都是疯转同一篇文章,后来发现国外的也是。 以爬别人网站的文章,能不能专业一点呢?别爬出来后,显示的乱七八糟的呢??导致检索文章难度增加,阅读更加困难。你们的贡献是仅限于自己?再说靠这种方法,你们的网站价值何在? 向我学习,“爬”别人的文章,要有底线,哈哈。方便英文不好的程序猿们使用简翻译 2015-08-02 16:48:53 · 3666 阅读 · 0 评论 -
[objective-c]推送警告处理
在使用iOS推送时,出现下面错误:application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.2015-07-29 20:38:12.858 zanbao[1原创 2015-07-29 20:38:55 · 7444 阅读 · 0 评论 -
[objective-c]编译出错 -- NS_REQUIRES_NIL_TERMINATION Error
Version 6.4 sdk为8.4版本在5s以上版本编译正常运行,5s一下版本就出错,错误如下:Stack dump:0. /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.4.sdk/System/Librar原创 2015-07-29 18:18:21 · 1574 阅读 · 0 评论 -
[objective-c]使用Lumberjack未定义
1.use of undeclared identifier 'ddLogLevel' #ifdef __OBJC__ #import #import #import "DDLog.h"#endif#ifdef DEBUG static const int ddLogLevel = LOG_LEVEL_VERBOSE;#else原创 2015-07-29 15:42:44 · 1506 阅读 · 0 评论 -
object-c调用swift -swift file not found
在使用oc调用swift时,一定要看清,下面的红色部分,productName,不是类名。坑爹啊!苹果官方文档:https://developer.apple.com/library/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40原创 2015-06-10 23:48:28 · 4647 阅读 · 0 评论 -
xcode : map file not found
object-c和c++混编,总是有莫名的错误,比如 c++的头文件,string,map等找不到。。1、工程属性--》build Setting --》 Compile Source As --》According to File Type2、修过使用c++头文件的.m文件为.mm文件(是使用c++头文件的.m文件)原创 2015-06-10 17:24:33 · 5797 阅读 · 0 评论 -
[object-c]像java一样优雅的写回调
void (^block)(NSString *cmd, NSDictionary *retDict) = ^(NSString *cmd, NSDictionary *retDict){ NSLog(@"%@, %@", cmd, retDict); }; int cmd = 3; NSMutableDictionary *dict = [NSMutabl原创 2015-05-06 17:15:33 · 1176 阅读 · 0 评论 -
object-c获取毫秒值,时间差,计算执行耗费时间
UInt64 msecond1 = [[NSDate date] timeIntervalSince1970]*1000;UInt64 msecond2 = [[NSDate date] timeIntervalSince1970]*1000; NSLog(@"%llu", msecond1 - msecond2);原创 2015-03-16 14:32:50 · 6197 阅读 · 0 评论 -
【MAC】 curl : (1) Protocol https not supported or disabled in libcurl
Download it here https://curl.haxx.se/download.htmlsudo ./configure --with-darwinsslmakemake install 原文:https://stackoverflow.com/questions/6884669/curl-1-protocol-https-not-supported-or-dis转载 2017-09-25 21:03:10 · 1625 阅读 · 0 评论