今天主要學習了三個知識點:
1.兩個類的相互調用,在.h文件中都使用@class加類名,用分號結束。
在 .m文件中要調用,就須要在 .m文件的開始用#import加類名進行聲明學習
2.字符串用for循環的輸出:
NSMutableArray *a=[NSMutableArray arrayWithObjects:"aaaa","bbbb",nil ];
for (int i=0; i<[a count]; i++) {
NSLog("%@
",[a objectAtIndex:i]);
//上一行也可寫爲:NSLog("%@
",a[i]);
}spa
3.字典用for循環輸出:
NSDictionary *dict={"a":"1","b":"2"};
NSMutableDictionary *dict1=[NSMutableDictionary dictionaryWithDictionary: dict];
for (id key in dict1) {
id value=[dict1 objectForKey:key];
NSLog("key:%@------value: %@",key,value);
}code