標籤:
不要求在 @interface、@implementation 和 @end 前後空行。如果你在 @interface 聲明了執行個體變數,則須在關括弧 } 之後空一行。
空格 vs. 定位字元
只使用空格,且一次縮排兩個空格。
我們使用空格縮排。不要在代碼中使用定位字元。你應該將編輯器設定成自動將定位字元替換成空格。
行寬
盡量讓你的代碼保持在 80 列之內。
通過設定 Xcode > Preferences > Text Editing > Show page guide,來使越界更容易被發現。
方法聲明和定義
Tip
- / + 和傳回型別之間須使用一個空格,參數列表中只有參數之間可以有空格。
方法應該像這樣:
- (void)doSomethingWithString:(NSString *)theString { ...}
星號前的空格是可選的。當寫新的代碼時,要與先前代碼保持一致。
如果一行有非常多的參數,更好的方式是將每個參數單獨拆成一行。如果使用多行,將每個參數前的冒號對齊。
- (void)doSomethingWith:(GTMFoo *)theFoo rect:(NSRect)theRect interval:(float)theInterval { ...}
當第一個關鍵字比其它的短時,保證下一行至少有 4 個空格的縮排。這樣可以使關鍵字垂直對齊,而不是使用冒號對齊:
- (void)short:(GTMFoo *)theFoo longKeyword:(NSRect)theRect evenLongerKeyword:(float)theInterval { ...}
方法調用
Tip
方法調用應盡量保持與方法聲明的格式一致。當格式的風格有多種選擇時,新的代碼要與已有代碼保持一致。
調用時所有參數應該在同一行:
[myObject doFooWith:arg1 name:arg2 error:arg3];
或者每行一個參數,以冒號對齊:
[myObject doFooWith:arg1 name:arg2 error:arg3];
方法定義與方法聲明一樣,當關鍵字的長度不足以以冒號對齊時,下一行都要以四個空格進行縮排。
[myObj short:arg1 longKeyword:arg2 evenLongerKeyword:arg3];
@public 和 @private
Tip
@public 和 @private 存取修飾詞應該以一個空格縮排。
與 C++ 中的 public, private 以及 protected 非常相似。
@interface MyClass : NSObject { @public ... @private ...}@end
異常
Tip
每個 @ 標籤應該有獨立的一行,在 @ 與 {} 之間需要有一個空格, @catch 與被捕捉到的異常對象的聲明之間也要有一個空格。
如果你決定使用 Objective-C 的異常,那麼就按下面的格式。不過你最好先看看 避免拋出異常 瞭解下為什麼不要使用異常。
@try { foo();}@catch (NSException *ex) { bar(ex);}@finally { baz();}
協議名
Tip
類型標識符和角括弧內的協議名之間,不能有任何空格。
這條規則適用於類聲明、執行個體變數以及方法聲明。例如:
@interface MyProtocoledClass : NSObject<NSWindowDelegate> { @private id<MyFancyDelegate> delegate_;}- (void)setDelegate:(id<MyFancyDelegate>)aDelegate;@end
塊(閉包)
Tip
塊(block)適合用在 target/selector 模式下建立回調方法時,因為它使代碼更易讀。塊中的代碼應該縮排 4 個空格。
取決於塊的長度,下列都是合理的風格準則:
- 如果一行可以寫完塊,則沒必要換行。
- 如果不得不換行,關括弧應與塊聲明的第一個字元對齊。
- 塊內的代碼須按 4 空格縮排。
- 如果塊太長,比如超過 20 行,建議把它定義成一個局部變數,然後再使用該變數。
- 如果塊不帶參數,^{ 之間無須空格。如果帶有參數,^( 之間無須空格,但 ) { 之間須有一個空格。
- 塊內允許按兩個空格縮排,但前提是和項目的其它代碼保持一致的縮排風格。
// The entire block fits on one line.[operation setCompletionBlock:^{ [self onOperationDone]; }];// The block can be put on a new line, indented four spaces, with the// closing brace aligned with the first character of the line on which// block was declared.[operation setCompletionBlock:^{ [self.delegate newDataAvailable];}];// Using a block with a C API follows the same alignment and spacing// rules as with Objective-C.dispatch_async(fileIOQueue_, ^{ NSString* path = [self sessionFilePath]; if (path) { // ... }});// An example where the parameter wraps and the block declaration fits// on the same line. Note the spacing of |^(SessionWindow *window) {|// compared to |^{| above.[[SessionService sharedService] loadWindowWithCompletionBlock:^(SessionWindow *window) { if (window) { [self windowDidLoad:window]; } else { [self errorLoadingWindow]; } }];// An example where the parameter wraps and the block declaration does// not fit on the same line as the name.[[SessionService sharedService] loadWindowWithCompletionBlock: ^(SessionWindow *window) { if (window) { [self windowDidLoad:window]; } else { [self errorLoadingWindow]; } }];// Large blocks can be declared out-of-line.void (^largeBlock)(void) = ^{ // ...};[operationQueue_ addOperationWithBlock:largeBlock];
google objective-c coding style(1)留白和格式