文章出處

 

1.NS_DESIGNATED_INITIALIZER

  • 方法后面帶有 NS_DESIGNATED_INITIALIZER 時, 為特定構造方法
  • 注意:子類如果重寫了父類的特定構造方法, 那么必須使用super調用父類的特定構造方法 
    • 警告信息: 
    • Designated initializer missing a 'super' call to a designated initializer of the super class
  • 例子
    - (instancetype)initWithFrame:(CGRect)frame
    {
        if (self = [super initWithFrame:frame]) {
            self.titleLabel.font = [UIFont systemFontOfSize:16];
            // 文字顏色
            [self setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];
            [self setTitleColor:[UIColor redColor] forState:UIControlStateSelected];
        }
        return self;
    }

     

2.NS_REQUIRES_SUPER

  • 方法后面帶有 NS_REQUIRES_SUPER , 則必須先調用父類的方法
  • 警告信息: 
  • Method possibly missing a [super run] call
@interface XMGTest : NSObject
- (void)run NS_REQUIRES_SUPER;
@end
 

@interface XMGSecondTest : XMGTest
@end
@implementation XMGSecondTest
- (void)run
{
    // 不調用, 則會有警告信信
    //[super run];
}
@end

 

3.NSParameterAssert

  • 斷言評估一個條件,如果條件為 false ,調用當前線程的斷點句柄。每一個線程有它自已的斷點句柄,它是一個 NSAsserttionHandler 類的對象。當被調用時,斷言句柄打印一個錯誤信息,該條信息中包含了方法名、類名或函數名。然后,它就拋出一個 NSInternalInconsistencyException 異常。
  • Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of classNSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises anNSInternalInconsistencyException exception.
  • 這個宏用于確認一個 Objective-C 的方法的有效性。簡單提供參數作為條件就行。該宏評估這個參數,如果為 false ,它就打印一個錯誤日志信息,該信息包含了參數并且拋出一個異常。
  • This macro validates a parameter for an Objective-C method. Simply provide the parameter as the condition argument. The macro evaluates the parameter and, if it is false, it logs an error message that includes the parameter and then raises an exception.
  • 如果定義了預處理宏 NS_BLOCK_ASSERTIONS 斷言就被禁止了。所有的斷點宏都返回 void。
  • Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All assertion macros return void.

 例子:

- (void)each_:(void (^)(id obj))block{
    
    // 如果 blick 不滿足條件: block != nil, 程序就會拋錯
    NSParameterAssert(block != nil);
    
    [self enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        
        // 執行 block
        block(obj);
    }];
}

 

4.NS_ASSUME_NONNULL_BEGIN和NS_ASSUME_NONNULL_END

http://www.cnblogs.com/KeenLeung/p/5316862.html

 


文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()