1. 程式人生 > >Code Snippets 使用

Code Snippets 使用

一個偶然的機會,瞭解了到了xcode一個非常不錯的、可以提高程式碼編寫效率的工具,Code Snippets。關於如何使用Code Snippets來設定自己的程式碼片段,請參考下面這篇文章:
http://blog.csdn.net/wzzvictory/article/details/12163939

文章寫的很好、把如何自定義Code Snippets的方法講的很透徹,唯一的缺點是沒有設定快捷鍵,我整理了一些大家在開發過程中,需要經常用到的程式碼片段,並且設定了簡單的快捷鍵:
1、PS ,對應:

@property (nonatomic, strong) NSString *<#name#>;

2、PI,對應:

@property(nonatomic, assign) NSInteger <#name#>;

3、PB,對應:

@property (nonatomic, assign) BOOL <#name#>;

4、WS,對應:

__weak typeof(self) weakSelf = self;

5,SS,對應:

__strong typeof(weakSelf) strongSelf = weakSelf;

自定義的Code Snippets可以直接拷貝到別的機器上使用,其目錄位於:

~/Library/Developer
/Xcode/UserData/CodeSnippets

我已經將常見的這些 Code Snippets放在了github上,大家可以直接clone下來,放在上述的目錄中使用:
https://github.com/xbydev/HBCodeSnippets