OC
车轮滚滚。
这个作者很懒,什么都没留下…
展开
-
object-c控制台只打印输出内容(去掉左边时间,方便文本信息保存)
#ifdef DEBUG#define NSLog(FORMAT, …) fprintf(stderr,“%s\n”,[[NSString stringWithFormat:FORMAT, ##VA_ARGS] UTF8String]);#else#define NSLog(…)#endif原创 2022-12-05 21:24:34 · 281 阅读 · 0 评论 -
xcode 10 打包 卡住
修改 build setting下原创 2019-04-03 18:02:17 · 1097 阅读 · 0 评论 -
xcode 构建版本成功之后 appstore 一直刷新不出来
以下权限使用必须在info.plist 里面添加麦克风权限:Privacy - Microphone Usage Description 是否允许此App使用你的麦克风?相机权限: Privacy - Camera Usage Description 是否允许此App使用你的相机?相册权限: Privacy - Photo Library Usage Description 是否...原创 2019-04-09 16:30:06 · 517 阅读 · 0 评论 -
xcode ios真机调试包更新
xcode 右键显示包内容 把解压的文件放到 Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport 目录下如下图所示原创 2019-04-08 09:48:50 · 873 阅读 · 0 评论 -
cocoapods install 报错 [!] /bin/bash -c set -e sh build.sh cocoapods-setup
cocoapods install 报错 [!] /bin/bash -c set -e sh build.sh cocoapods-setup这个是xcode 安装多个版本造成的终端运行 xcode-select -p终端运行 xcode-select -ppod install 解决问题...转载 2019-04-01 11:46:00 · 1920 阅读 · 0 评论 -
网络请求缓存 策略 参数不对 重复请求返回值不变
https://www.jianshu.com/p/a99353030564NSURLRequestUseProtocolCachePolicy:默认策略,具体的缓存逻辑和协议的声明有关,如果协议没有声明,不需要每次重新验证cache。 如果请求协议头为no-cache,则表现为直接从后台请求数据NSURLRequestReloadIgnoringLocalC...转载 2019-03-16 18:02:56 · 283 阅读 · 0 评论 -
获取不到wifi名
转载 2019-03-03 17:46:48 · 1391 阅读 · 0 评论 -
在view最上层添加新view失效问题
[[[UIApplication sharedApplication]keyWindow]addSubview:self];改为UIWindow *keyWindow = [[[UIApplication sharedApplication] delegate] window];[keyWindow addSubview:self]原创 2019-03-03 16:04:08 · 364 阅读 · 0 评论 -
=分类里面s使用实例变量 要添加setter getter 方法==================
static NSString *nameKey = @“nameKey”; //那么的key@interface SJStartAndGuideVc (QZV5)#pragma mark 分类里面s使用实例变量 要添加setter getter 方法@property(strong, nonatomic)AWVideoViewModelV5 *videoModel;@end@imple...原创 2019-03-08 14:37:08 · 182 阅读 · 0 评论 -
NSTimer 间隔触发
//3秒触发NSTimer *batteryLevelTimer = [NSTimer scheduledTimerWithTimeInterval:15 target:self selector:@selector(getBatteryLevel) userInfo:nil repeats:YES];[batteryLevelTimer setFireDate:[NSDate dateWit...原创 2018-12-11 11:59:33 · 241 阅读 · 0 评论