上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: xcode8支持ios8以下真机测试方法: 1.应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-DeviceSupport 把里边 6.0 6.1 7.0 7.1 的文件夹粘贴到xcode8 对应的文件夹内 2.应用程序 阅读全文
posted @ 2016-10-31 11:16 lear 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://blog.csdn.net/lwl_ls/article/details/20222051 将本地代码import到svn服务器。 svn co出代码,编译却报错少了这个那个*.a文件,手动添加这些*.a文件极其麻烦。 *.a文件丢失的原因: svn有个默认的global-ig 阅读全文
posted @ 2016-09-22 16:06 lear 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 使用说明: 原文:http://blog.csdn.net/lizhongfu2013/article/details/26384029 http://blog.csdn.net/showhilllee/article/details/38398119 错误处理: http://blog.csdn. 阅读全文
posted @ 2016-07-21 15:20 lear 阅读(175) 评论(0) 推荐(0) 编辑
摘要: // // MallTestViewController.h // fitmiss // // Created by bill on 16/6/28. // Copyright © 2016年 lear. All rights reserved. // #import "RootViewController.h" @interface MallTestViewController :... 阅读全文
posted @ 2016-07-08 17:13 lear 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 感谢下面文章作者的无私奉献 基础用法: http://www.cnblogs.com/ios8/p/iOS-UICollectionView.html http://my.oschina.net/joanfen/blog/160156 这个是分区带header footer的用法: http://w 阅读全文
posted @ 2016-06-28 11:08 lear 阅读(103) 评论(0) 推荐(0) 编辑
摘要: UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero]; NSString *userAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"]; NSLog(@"userAgent=%@",use... 阅读全文
posted @ 2016-06-06 13:54 lear 阅读(478) 评论(0) 推荐(0) 编辑
摘要: #import <AdSupport/ASIdentifierManager.h> NSString *adId =[[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString]; NSLog(@"%@",adId); 阅读全文
posted @ 2016-05-17 10:10 lear 阅读(283) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_5971cdd00102vqgy.html 阅读全文
posted @ 2016-05-13 11:27 lear 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 让手机振动一下 #import < AudioToolbox/AudioToolbox.h> #import < UIKit/UIKit.h> - (void)vibrate { AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); } 阅读全文
posted @ 2016-02-25 11:14 lear 阅读(212) 评论(0) 推荐(0) 编辑
摘要: sudo gem update --system sudo gem install cocoapods pod setup pod --version sudo gem install cocoapods这一步在os x10.11会出现错误,参考下面方法解决 http://www.07net01.c 阅读全文
posted @ 2016-02-23 09:15 lear 阅读(3687) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页