#在藍懿學習iOS的日子#day14

來源:互聯網
上載者:User

標籤:

今天上午學習uitabelViewcell和下午學慣用uitabelViewcel來顯示手機播放器的用戶端顯示歌詞的介面,和字典

//    建立不可變字典

    NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"zhangsan",@"name",@"18",@"age", nil];

    dic = @{@"name":@"zhangsan",@"age":@"18"};

//    建立可變字典

    NSMutableDictionary *md = [NSMutableDictionary dictionary];

    [md setObject:@"lisi" forKey:@"name"];

    [md setObject:@(11) forKey:@"age"];

    

    NSLog(@"%@",md);

    

    NSMutableDictionary *china = [NSMutableDictionary dictionary];

    

    NSMutableDictionary *hebeiDic = [NSMutableDictionary dictionary];

    

    [hebeiDic setObject:@[@"灤縣",@"路南",@"樂亭"] forKey:@"唐山"];

    [hebeiDic setObject:@[@"新城",@"橋東區",@"橋西區"] forKey:@"石家莊"];

    

    [china setObject:hebeiDic forKey:@"河北"];

    

    

    

    NSMutableDictionary *liaoNingDic = [NSMutableDictionary dictionary];

    

    [liaoNingDic setObject:@[@"大娃",@"二娃",@"三娃"] forKey:@"葫蘆島"];

    [liaoNingDic setObject:@[@"皇姑區",@"皇姑父區",@"黃神曲"] forKey:@"瀋陽"];

    

    [china setObject:liaoNingDic forKey:@"遼寧"];

    

    

    

    

    

    

    NSDictionary *lnDic = [china objectForKey:@"遼寧"];

 

//    NSArray *shenyangArr = lnDic[@"瀋陽"];

    

//    for (NSString *s in shenyangArr) {

//        NSLog(@"%@",s);

//    }

    

    

    

    

 

//    如何遍曆字典

    for (NSString *key in china.allKeys) {

      

          NSLog(@"省-%@",key);

        NSDictionary *shengDic = china[key];

        

        for (NSString *shiKey in shengDic.allKeys) {

            

            NSLog(@"市-%@",shiKey);

            

            NSArray *xianArr = shengDic[shiKey];

            

            for (NSArray *xian in xianArr) {

                NSLog(@"縣-%@",xian);

            }

}

}
}

#在藍懿學習iOS的日子#day14

聯繫我們

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