摘要: 工作中需要用到某一页面强制横屏显示,但是在ios8以上显示正常横屏,而在ios7上显示半屏(并没有横屏)的bug并提示警告:Presenting view controllers on detached view controllers is discouraged 发现原因:我present视图的... 阅读全文
posted @ 2015-08-27 15:38 笑小墨 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 原因一般分两种:1,Provisioning Profiel证书选择错误2,由于在项目开发中途添加了新的测试设备,导致证书处于为激活状态,需要更新证书。 新建Provisioning Profiel,勾选all。使用新的Provisioning Profiel测试。一般解决方法:xcode->Pr... 阅读全文
posted @ 2015-07-19 17:27 笑小墨 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1,实现一个alertView1 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"请输入Wi-Fi密码" delegate:self cancelButtonTitle:@"取消" otherB... 阅读全文
posted @ 2015-07-17 18:13 笑小墨 阅读(2603) 评论(0) 推荐(0) 编辑
摘要: 1,新建string文件并命名2,点击location选择语言(此时只有英语)3,在project的info中添加新的语言4,分别在对应的文件中写入对应不同语言环境下的字符串5,然后在对应的地方引用label.text = NSLocalizedString(@"register", @""); 阅读全文
posted @ 2015-07-14 10:54 笑小墨 阅读(585) 评论(0) 推荐(0) 编辑