objective-c中的category

來源:互聯網
上載者:User

標籤: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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.