標籤:ios objective-c category
oc中的category類似於swift中的extension. 常用於給Int, NSString, NSArray等基礎資料型別 (Elementary Data Type)的對象進行一些方法的擴充.
主要有兩種用途: 基本類型擴充和函數前向定義.
基本類型的擴充
如下例子, 可以給NSString添加reverse方法.
建立NSString+ReverseString的擴充類, 在.h中
// NSString+ReverseString.h@interface NSString (ReverseString)- (id)reverseString;@end
在.m檔案中, 實現reverseString方法:
// NSString+ReverseString.m@implementation NSString (ReverseString)- (id) reverseString { NSUInteger len = [self length]; NSMutableString *returnStr = [NSMutableString stringWithCapacity:len]; while (len) { unichar c = [self characterAtIndex:--len]; // 兩個位元組 [returnStr appendString:[NSString stringWithFormat:@“%C”, c]]; } return returnStr;}@end
使用的時候非常簡單:
#import “NSString+ReverseString.h"NSString *str = @“hello world”;NSString *reverseStr = [str reverseString];
注意: category中只能擴充方法, 而不能擴充屬性.
函數前向定義
看這個應用情境: 在.m檔案中, test1方法中調用test2, 但test2是在test1後邊定義, 這是會帶來一個函數前向定義的警告. 我們可以將test2放在.h檔案中定義即可消除該警告, 那如果不想這樣做呢, 可以使用category來實現.
在.m檔案中使用category來定義test2, 即將test2私人化(外部不能訪問), 同時不會帶來函數前向定義的問題.
@interface Foo (Private)- (void)test2;@end@implementation xxx@end
具體代碼就不貼上來了.
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
objective-c中的category