1.将@property(nonatomic,assign)NSInteger*isq_user 做成系统提示
@property(nonatomic,assign) <#type> 在type后面在输入#(@property(nonatomic,assign) <#type#>)即变成
同样的原理 @property(nonatomic,assign) <#type#> *<#name#>
然后将这行代码拖入控件选择器中
最下面的My Code Snippet就是你刚添加的
选中稍等一会,或者直接双击弹出编辑选项
然后编辑,只需要编辑Title和Completion Shortcut即可,其中Completion Shortcut即为你真正需要输入的代码,然后点击Done就完成了。
然后你在代码就可以这样用了
延伸:你也可以用这种方式来封装自己的注释
2.终端命令 cd 和 ls
cocopods的安装 CocoaPods详解之----使用篇 - SpeedBoy007的专栏 - 博客频道 - CSDN.NET
创建Podfile : touch Podfile
加载Podfile:pod install
使用Xcode打开cocopods创建的Podfile,方便编辑
open -aXcode Podfile
3.终端查看某个.a文件是否支持 arm64(Architectures)
lipo -info libPushSDK.a
4.统计代码行数
查看每一行的行数
find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs wc -l
列出代码行数总和
find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs grep -v "^$"|wc -l
5.在程序中使用pch文件
需要在工程中设置:
$(SRCROOT)/项目名/PrefixHeader.pch