Objective-C 程式設計讀書筆記(二)

來源:互聯網
上載者:User

Objective-C 程式設計讀書筆記

第15章 數字、字串和集合

字串常用操作

NSString *str1 = @"This is String A";

NSString *str2 = [ str1 substringWithRange:NSMakeRange(8, 6)];

NSRange subRange = [str1 rangeOfString:str2];

if(subRange.location == NSNotFound)

{

    NSLog(@"String not found");

}else{

    NSLog(@"String is at index %lu,length is %lu",subRange.location,subRange.length);

}

NSMutableString *mstr = [NSMutableString stringWithString:str1];

NSUInteger number = [mstr replaceOccurrencesOfString:@"This is"

                                          withString:@"An example of"

                                             options:nil

                                               range:NSMakeRange(0, mstr.length)];    

數組常用操作

NSArray *books = @[@"book4",@"book1",@"book2",@"book3"];

NSArray *sortedBooks = [books sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {

    return [obj1 compare:obj2];

}];

for (NSString *book in sortedBooks) {

    NSLog(@"%@",book);

}

NSMutableArray * array = [@[@"1",@"2"] mutableCopy];

array[1] = @"3";

NSLog(@"%@",array[1]);

NSMutableDictionary * people = [@{@"k1":@"v1"} mutableCopy];

people[@"k1"] = @"v2";

NSLog(@"%@",people[@"k1"]);    

第16章 使用檔案

複製檔案和使用NSProcessInfo

基本的檔案操作:NSFileHandle

NSFileManager *fm = [NSFileManager defaultManager];

[NSBundle mainBundle]pathForResource:(NSString *) ofType:(NSString *)]

NSArray *images = [[NSBundle mainBundle]pathsForResourcesOfType:@"jpg" inDirectory:@"images"];

NSURL *url = [NSURL URLWithString:@"http://www.google.com"];

第17章 記憶體管理和自動引用計數

//當程式中出現了大量臨時的對象

for (i=0; i<n ; ++i) {

    @autoreleasepool {

       … //與臨時對象打交道   

    }

}

當ARC遇到方法調用時,如果方法名字以alloc,new,copy,mutableCopy或int這些詞開頭,它會假定方法返回對象的所有者給方法的調用者

disable ARC for a single file
Compiler Flags -fno-objc-arc

第18章 複製對象

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.