当前位置:首页
> ios
因iPhone X上架杯具
最近上架了两款app,均被拒绝。以下是原文: 0. 10.0 Before You Submit: Program License Agreement......
iOS10,Xcode8上传AppStore的时候,找不到构建版本
参考资料:http://blog.csdn.net/u013283787/article/details/52593143......
ios ble:didDiscoverPeripheral没有回调
参考资料:http://stackoverflow.com/questions/26320578/diddiscoverperipheral-not-been-called-after-advertising-another-ios-device......
navigationController的pushViewController无效问题
参考资料:http://www.cocoachina.com/ask/questions/show/52842......
IOS textField怎样设置只能输入英文字母或者数字,不能输入汉字
参考资料:http://segmentfault.com/q/1010000002705645/a-1020000002708433//设置键盘类型 self.textField.keyboardType = UIKeyboardTypeASCIICapable;......
IOS Autolayout ScrollView无法滚动的解决办法
参考资料:http://www.cocoachina.com/bbs/read.php?tid=175749问题:设定autolayout之后,发现scrollview无法滚动了,导致无法查看所有的内容。在viewDidLoad里重新设定scrollview的contentSize,还是不行。......
Xcode Warning: The Copy Bundle Resources build phase contains this target's Info.plist file
问题: 编译时,提示The Copy Bundle Resources build phase contains this target's Info.plist file 原因: ......
ios:autolayout下如何获取UIView的实际宽度
参考资料:http://stackoverflow.com/questions/27653247/how-to-get-real-size-uiview-with-autolayout问题:在 storyboard里放了一个UIView,并使用autolayout来约束其宽度。为了获取其实际宽度,我...
ios宏: 判断是否是retina屏,是否iPad,设备判断(4,5,5s,6等)
#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)......