NSMutableDictionary处理
返回默认类型有所调整,afnetworking本身可以把id类型的respon当成NSMutableDictionary使用对应的Category,现在默认成NSDictionary,建议NSDictionary加对应的Category来兼容
xcode8警告
nw_socket_set_common_sockopts setsockopt SO_NOAPNFALLBK failed: [42] Protocol not available, dumping backtrace:
修改项目配置On your Environment Variables setOS_ACTIVITY_MODE=disable
http://stackoverflow.com/questions/37800790/hide-strange-unwanted-xcode-8-logs/39461256#39461256
中文长度变化显示“...”
ios10之后长度有所变化,最简单的做法是label button加
self.adjustsFontSizeToFitWidth = YES;
处理,不过不建议,但是如果要快速做可以这样设一下
待续