摘要:
@property(nonatomic) BOOLscrollsToTop 这个属性在起作用 默认是YES// When the user taps the status bar, the scroll view beneath the touch which is closest to the s... 阅读全文
摘要:
这个提示并不是出错,不理会它我的程序也没出现什么问题但是处于强迫症,还是努力寻找解决的方法。。。最终发现问题如下:在xib各种绘制和添加约束的UITableViewCell之后,在某一特定情况想要隐藏这个Cell,于是我就在UITableView的- (CGFloat)tableView:(UITa... 阅读全文
摘要:
[!] `` attempted to initialize an object with an unknown UUID. `0B6359431C33CA0200C80C5D` for attribute: `files`. This can be the result of a merge an... 阅读全文
摘要:
//// RPProgressView.h// CALayer定制下载进度条控件//// Created by RinpeChen on 16/1/2.// Copyright © 2016年 rinpe. All rights reserved.//#import @interface R... 阅读全文
摘要:
编译之后出现:ld: warning: object file xxxxx... was built for newer iOS version (8.1) than being linked (7.0)解决方法:在Build Settings -> other lingkr Flags 中添加-w... 阅读全文
摘要:
经排查, 系因为URL中包含有中文, 所以无法加载页面, 解决方法如下:将URL进行转码NSString *urlStr =[[NSString stringWithFormat:@"http://www.xxx.com/xxx?city=深圳"] stringByAddingPercentEsca... 阅读全文
摘要:
apns -> 注册推送功能时发生错误,错误信息: Error Domain=NSCocoaErrorDomain Code=3000 "未找到应用程序的“aps-environment”的授权字符串" UserInfo=0x16545fc0 {NSLocalizedDescription=未找到应... 阅读全文
摘要:
我出现这个错误是在pch中添加了一个a.h文件然后在其他文件的b.h文件中就出现这个错误..后来排查出原因是:在pch中, 这个a.h文件在b.h文件之后, 所以在b.h中使用的时候就会报错 阅读全文
摘要:
在AppDelegate.m的- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions方法里加上一段代码[NSThreadsleepForTim... 阅读全文
摘要:
POST:AFHTTPSessionManager *session = [AFHTTPSessionManager manager];session.requestSerializer = [AFJSONRequestSerializer serializer];NSMutableDictiona... 阅读全文