摘要:
这是链接: https://itunes.apple.com/cn/app/da-dou-dou-lao-shi/id1395835036?mt=8 其中值得一提的是mt参数是啥意思 见下图: 阅读全文
摘要:
UITextField限制字符数 限制表情符号 UITextView限制字符数 阅读全文
摘要:
http://www.cocoachina.com/ios/20181030/25327.html 阅读全文
摘要:
~/Library/MobileDevice/Provisioning Profiles 阅读全文
摘要:
https://www.jianshu.com/p/c170e7ae1964 阅读全文
摘要:
manager.requestSerializer.HTTPShouldHandleCookies = NO; 阅读全文
摘要:
系统框架 声明协议 实现代码: 回放预览界面的代理方法 over 阅读全文
摘要:
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; if ([[UIApplication sharedApplication] canOpenURL:url]) { [[UIApplication sharedApplication] openURL:url];... 阅读全文
摘要:
随着项目的增加,会接触越来越多的东西,之前对js的交互一直没接触过,这几天一直在研究,也是碰到一些坑,记录一下吧!! 所谓的js交互,其实就是web端用h5调用原生的方法以及客户端直接调用h5的方法。 这里iOS会用到系统提供的js框架:JavaScriptCore.framework,所以项目里要 阅读全文