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