当前位置:首页 > ios

自定义"back" navigation button 的动作

xjtudll7年前 (2017-12-02)2090
目的:监测“返回”按键,并执行相关操作。问题分析:......

因iPhone X上架杯具

xjtudll7年前 (2017-10-14)3820
最近上架了两款app,均被拒绝。以下是原文: 0. 10.0 Before You Submit: Program License Agreement......

iOS10,Xcode8上传AppStore的时候,找不到构建版本

xjtudll8年前 (2016-09-19)7020
iOS10,Xcode8上传AppStore的时候,找不到构建版本
参考资料:http://blog.csdn.net/u013283787/article/details/52593143......

ios ble:didDiscoverPeripheral没有回调

xjtudll8年前 (2016-08-12)10430
参考资料:http://stackoverflow.com/questions/26320578/diddiscoverperipheral-not-been-called-after-advertising-another-ios-device......

navigationController的pushViewController无效问题

xjtudll8年前 (2016-07-31)13620
参考资料:http://www.cocoachina.com/ask/questions/show/52842......

IOS textField怎样设置只能输入英文字母或者数字,不能输入汉字

xjtudll9年前 (2016-03-02)6870
参考资料:http://segmentfault.com/q/1010000002705645/a-1020000002708433//设置键盘类型 self.textField.keyboardType = UIKeyboardTypeASCIICapable;......

IOS Autolayout ScrollView无法滚动的解决办法

xjtudll9年前 (2016-02-10)7150
参考资料: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

xjtudll9年前 (2016-01-14)5040
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的实际宽度

xjtudll9年前 (2015-12-31)12040
参考资料:http://stackoverflow.com/questions/27653247/how-to-get-real-size-uiview-with-autolayout问题:在 storyboard里放了一个UIView,并使用autolayout来约束其宽度。为了获取其实际宽度,我...

ios宏: 判断是否是retina屏,是否iPad,设备判断(4,5,5s,6等)

xjtudll9年前 (2015-11-29)4710
#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)......