iOS NSNumber轉化NSString之description,nsnumbernsstring

來源:互聯網
上載者:User

iOS NSNumber轉化NSString之description,nsnumbernsstring

我們經常需要把一個數字轉成字串,當你不需要配合其他字串的時候可以用description.

 1     /** 2      description屬於NSObject 3      值是NSNumber時候,不用stringWithFormate來轉化成字串了.簡便得多 4      在解析/賦值的時候比較有用,當我們需要NSString的時候,給我們的資料卻是NSNumber.. 5      */ 6      7     //從字典取出的是NSNumber 8     NSDictionary * dict = @{ 9                              @"一":@1,10                              @"二":@2,11                              @"三":@3};12     //取出的NSNumber 被轉換成了 NSString13     NSString * str = [dict[@"二"] description];14     NSLog(@"str=%@",str);15     16     //從字典取出資料是NSString17     NSDictionary * dict2 = @{@"1":@"一",18                             @"2":@"二",19                             @"3":@"三"};20     //因為是字串,這裡description方法就沒什麼實際作用了21     NSString * str2 = [dict2[@"2"] description];22     NSLog(@"str2=%@",str2);

 

相關文章

聯繫我們

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