苹果ios开发者

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2015年1月30日

摘要: 阅读全文
posted @ 2015-01-30 21:41 苹果ios开发者 阅读(106) 评论(0) 推荐(0) 编辑

摘要: 第一步:添加开发者账号第二步:刷新第三步:设置证书名第四步:Export 阅读全文
posted @ 2015-01-30 21:38 苹果ios开发者 阅读(125) 评论(0) 推荐(0) 编辑

2015年1月23日

摘要: http://94it.net/a/jingxuanboke/2015/0113/447679.html 阅读全文
posted @ 2015-01-23 09:56 苹果ios开发者 阅读(192) 评论(0) 推荐(0) 编辑

2015年1月6日

摘要: 在真机测试的时候往往会突然出现这样一个错误,code signing is required for product type 'Application' in SDK 'iOS 7.0' ,就是说代码签名证书不对劲。 解决方案,1.选择工程->Build Settings -> Code Sign... 阅读全文
posted @ 2015-01-06 10:36 苹果ios开发者 阅读(298) 评论(0) 推荐(0) 编辑

2014年12月25日

摘要: Xcode6.0.1对ios8.1真机不识别,升级Xcode6.0.1为Xcode6.1,就行了。也可以,降低手机版本为以前的版本,想要降低手机版本请看我的另一片博客《iphone手机版本降级》。 阅读全文
posted @ 2014-12-25 15:53 苹果ios开发者 阅读(3703) 评论(0) 推荐(0) 编辑

摘要: http://blog.sina.com.cn/s/blog_7b9d64af0101e5vj.html 阅读全文
posted @ 2014-12-25 10:00 苹果ios开发者 阅读(200) 评论(0) 推荐(0) 编辑

2014年12月23日

摘要: http://blog.csdn.net/tt5267621/article/details/39430659 阅读全文
posted @ 2014-12-23 10:03 苹果ios开发者 阅读(172) 评论(0) 推荐(0) 编辑

2014年12月19日

摘要: UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; pasteboard.string = @"复制成功"; 阅读全文
posted @ 2014-12-19 11:45 苹果ios开发者 阅读(128) 评论(0) 推荐(0) 编辑

摘要: 1.隐藏某个页面的状态栏再视图加载到窗口之前添加该方法- (BOOL)prefersStatusBarHidden{ return YES;//iOS7.0中隐藏状态栏}一、始终隐藏状态栏如果在App中需要状态栏一直是隐藏着的,可以在AppDelegate的application:didFinish... 阅读全文
posted @ 2014-12-19 11:42 苹果ios开发者 阅读(611) 评论(0) 推荐(0) 编辑

摘要: 一,直接调用safari打开url[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.2cto.com/kf/201211/171644.html"]]; 二,通过webView设置代理在内部打开 ... 阅读全文
posted @ 2014-12-19 11:32 苹果ios开发者 阅读(673) 评论(0) 推荐(0) 编辑