摘要:
Xcode8 iOS10 中权限适配 ,如果不在plist文件中添加权限程序会闪退 NSPhotoLibraryUsageDescription App需要您的同意,才能访问相册 NSCameraUsageDescription App需要您的同意,才能访问相机 NSMicrophoneUsageDescription App需要您的同意,... 阅读全文
摘要:
1.设置tetxField的内边距 [self.yourTextField setValue:[NSNumber numberWithInt:5] forKey:@”paddingTop”]; [self.yourTextField setValue:[NSNumber numberWithInt: 阅读全文
摘要:
在info.plist里面添加Localized resources can be mixed 类型为Boolean,改为YES 表示是否允许应用程序获取框架库内语言。 然后再添加Localizations 类型默认是NSArray ,然后修改语言为Chinese。 阅读全文
摘要:
NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("closeAlert"), name: UIApplicationDidBecomeActiveNotification, object: nil)//应用后台进入前台通知 NSNotificationCenter.defaultCenter(... 阅读全文
摘要:
NSHTTPCookie *cookie; NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (cookie in [storage cookies]) { [storage deleteCookie:cookie]; } //... 阅读全文
摘要:
showWebView.dataDetectorTypes = .None //swift禁用webView对H5中数字,链接,日期,地址,电话号码做解析 其UIDataDetectorTypes属性: static var PhoneNumber: UIDataDetectorTypes { get } // Phone number detection static v... 阅读全文
摘要:
以上是在app中打开appStore中app的方法 阅读全文
摘要:
1.abs(a) 处理int类型a的取绝对值 2.fabsf(a) 处理float类型a的取绝对值 3.fabs(a) 处理double类型a的取绝对值 阅读全文
摘要:
当用webView的loadHEMLString方法加载html代码时,必须设置baseURL,否则执行代理方法获取页面链接URL时得到的URL会在前部自动天剑如下字段: applewebdata://C97726ED-D607-4CD6-A49C-A86E8598E421/;如果获取的url是一个 阅读全文