2017年1月24日
摘要: Xcode8 iOS10 中权限适配 ,如果不在plist文件中添加权限程序会闪退 NSPhotoLibraryUsageDescription App需要您的同意,才能访问相册 NSCameraUsageDescription App需要您的同意,才能访问相机 NSMicrophoneUsageDescription App需要您的同意,... 阅读全文
posted @ 2017-01-24 10:33 莫雨 阅读(810) 评论(0) 推荐(0) 编辑
  2016年10月20日
摘要: 1.设置tetxField的内边距 [self.yourTextField setValue:[NSNumber numberWithInt:5] forKey:@”paddingTop”]; [self.yourTextField setValue:[NSNumber numberWithInt: 阅读全文
posted @ 2016-10-20 13:55 莫雨 阅读(4795) 评论(1) 推荐(0) 编辑
  2016年9月21日
摘要: 在info.plist里面添加Localized resources can be mixed 类型为Boolean,改为YES 表示是否允许应用程序获取框架库内语言。 然后再添加Localizations 类型默认是NSArray ,然后修改语言为Chinese。 阅读全文
posted @ 2016-09-21 17:56 莫雨 阅读(137) 评论(0) 推荐(0) 编辑
  2016年7月20日
摘要: NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("closeAlert"), name: UIApplicationDidBecomeActiveNotification, object: nil)//应用后台进入前台通知 NSNotificationCenter.defaultCenter(... 阅读全文
posted @ 2016-07-20 14:29 莫雨 阅读(140) 评论(0) 推荐(0) 编辑
  2016年7月13日
摘要: NSHTTPCookie *cookie; NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (cookie in [storage cookies]) { [storage deleteCookie:cookie]; } //... 阅读全文
posted @ 2016-07-13 15:57 莫雨 阅读(2032) 评论(0) 推荐(0) 编辑
  2016年7月1日
摘要: showWebView.dataDetectorTypes = .None //swift禁用webView对H5中数字,链接,日期,地址,电话号码做解析 其UIDataDetectorTypes属性: static var PhoneNumber: UIDataDetectorTypes { get } // Phone number detection static v... 阅读全文
posted @ 2016-07-01 15:45 莫雨 阅读(373) 评论(0) 推荐(0) 编辑
  2016年6月23日
摘要: 以上是在app中打开appStore中app的方法 阅读全文
posted @ 2016-06-23 11:38 莫雨 阅读(232) 评论(0) 推荐(0) 编辑
  2016年6月21日
摘要: 1.abs(a) 处理int类型a的取绝对值 2.fabsf(a) 处理float类型a的取绝对值 3.fabs(a) 处理double类型a的取绝对值 阅读全文
posted @ 2016-06-21 11:30 莫雨 阅读(15959) 评论(0) 推荐(0) 编辑
  2016年5月10日
摘要: 当用webView的loadHEMLString方法加载html代码时,必须设置baseURL,否则执行代理方法获取页面链接URL时得到的URL会在前部自动天剑如下字段: applewebdata://C97726ED-D607-4CD6-A49C-A86E8598E421/;如果获取的url是一个 阅读全文
posted @ 2016-05-10 16:58 莫雨 阅读(1787) 评论(0) 推荐(0) 编辑
  2016年4月29日
摘要: 1. 软件启动瞬间即弹出启动图的时候隐藏状态栏的方法 修改<YOUR_APP>-Info.plist,在Xcode中修改,在根结点Iinfo下面新加一项“Status bar is initially hidden”(不用手动输入,可以直接在下拉菜单中选取)。这是个BOOL类型的键值,选择YES即可 阅读全文
posted @ 2016-04-29 11:21 莫雨 阅读(191) 评论(0) 推荐(0) 编辑