解决 点击UITextField就会出现以下警告
摘要:1.点击TextField出现[MC] System group Container for systemgroup.com.apple.configurationprofiles path is /Users/zjn-apple/Library/Developer/CoreSimulator/De
阅读全文
modalPresentationStyle 使用present跳转界面时,实现特殊的弹出效果。
摘要:1.代码如下 controller.modalPresentationStyle=UIModalPresentationFormSheet; [self presentModalViewController:controller animated:YES]; 2. UIModalPresentati
阅读全文
关于iPad横屏设置
摘要:1.项目需要:iPad支持横屏,iPhone支持竖屏, (1) (2)在info。plist里面设置View controller-based status bar appearance为NO。 (3)这样iPad运行为横屏显示,在不需要显示状态栏的情况下,在ViewController设置 sel
阅读全文
AutoLayout----Unable to simultaneously satisfy constraints 解决错误
摘要:1.出现这个错误的意思是有约束不能同时满足我的要求,所以找到那个多余的约束,并且修复掉就可以了, 错误信息下面都会提示你哪个地方出错了,去修正就可以了。 3.尽量写一点代码就更新,不然就会出现多个界面出现这种错误的概率,这样就很难去找到底是哪里出现了错误。 4.如果实在是找不到的话全局断点去找。
阅读全文
使用storyBoard区分views as 为iPad和iPhone。
摘要:1.正常情况下Main.storyBoard里面默认是Iphone,想要兼顾iPad和iPhone: (1)创建新的storyBorad命名:iPad.storyBoard, 2、File >duplicate,将文件命名为MainStoryboard_ipad.storyboard 3、在plis
阅读全文
安装CocoaPods步骤
摘要:ruby 的软件源( https://rubygems.org )使用的是亚马逊的云服务,所以自带的需要FQ,但我们可以使用如下代码将官方的 ruby 源替换成国内淘宝的源(https://ruby.taobao.org/ )或者是由 Ruby China 社区专注维护的这个源(https://ge
阅读全文