1、info.plist移动导致的编译错误
解决方法:点击这个自动解决
2、pch文件的创建
https://blog.csdn.net/survivorsfyh/article/details/79150482
3、联网功能实现
4、加载bundle中的图片
https://blog.csdn.net/null29/article/details/53640179
5、父View透明,子View也透明的问题解决
https://blog.csdn.net/baidu_31683691/article/details/52873972
6、App跳转到Safari以及Safari跳转回App
https://www.jianshu.com/p/95e00e21f5c8
7、国际化
https://www.jianshu.com/p/7cb0fad6d06f
8、推送设置
https://www.jianshu.com/p/fc962db539e6
9、查询项目中所有的汉字
http://www.cocoachina.com/ios/20151023/13696.html
10、cell中的detailText不显示的问题
https://www.jianshu.com/p/0914faf6022c
11、url中的参数解析为NSDictionary
https://www.jianshu.com/p/71f3289b3883
12、swift中pods的无法引用
https://www.jianshu.com/p/510cb8457a0e
13、UIView上的子View因为父View的透明而透明,解决方法是直接设置父View的背景色为透明,而不是用alpha来设置
14、禁用侧滑返回的方法
https://www.jianshu.com/p/517bb7b6604a
15、提交自己的cocoaPods库
git add .
git commit -m "1.0.11"
git push origin master
git tag 1.0.11
git push --tags
pod trunk push XJTools.podspec --allow-warnings
16、项目中有.c文件造成大量报错的解决方法
https://www.jianshu.com/p/70bb45bbf11e
17、修改类名
https://www.jianshu.com/p/773b04a81320
18、SVN代码管理中pods中第三方库的.a文件提交不了的解决办法
https://www.jianshu.com/p/4284f072470f
19、iPad开发中UIAlertController奔溃问题解决
https://www.cnblogs.com/huangzhengguo/p/9436606.html
20、Xcode更新后项目变为Mac项目的解决方法
https://www.jianshu.com/p/6c9fec5efa1f
21、armv7 armv7s arm64 arm64e的意思
https://www.jianshu.com/p/bf9c762b5319
22、在线图标生成
在线生成安卓APP图标生成 图标在线 在线图标 安卓图标 生成图标
https://icon.wuruihong.com/
在线png图片压缩 png压缩
https://compresspng.com/zh/
在线gif图片压缩 gif压缩
https://www.soogif.com/compress
23、解决-bash: /usr/local/bin/pod: /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby: bad interpreter: No such file or directory的问题
终端输入:sudo gem install -n /usr/local/bin cocoapods
24、Swift playground一直running卡住的解决办法
https://www.jianshu.com/p/3a44597cc0f0
25、UIButton设置enable=NO无效,设置userInteractionEnabled=NO才有效,奇怪吧
26、防止button或者cell重复点击的方法
// 防止多次调用
#define kPreventRepeatClickTime(_seconds_) \
static BOOL shouldPrevent; \
if (shouldPrevent) return; \
shouldPrevent = YES; \
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)((_seconds_) * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ \
shouldPrevent = NO; \
}); \
网址:https://www.jianshu.com/p/892b99e9127e
27、获取APP包的资源文件
现在只能使用Apple Configurator来获取资源文件
网址:https://www.jianshu.com/p/6c70fb0b5e90
)