OC言語特性整合

1171 ワード

OCにおいて、isKindOfClass:オブジェクトがクラスのメンバーか、またはそのクラスから派生したメンバーかを決定する。isMember OfClass:オブジェクトが現在のクラスのメンバーかどうかを決定する。
@http://blog.csdn.net/lvxiangan/article/details/48049471
            

 1、  for-each          ,          :
for (NSString *s in [dictionary allValues]) {
    NSLog(@"value: %@", s);
}
2、NSDictionary  allValues                 。  allKeys          :
for (NSString *s in [dictionary allKeys]) {
    NSLog(@"key: %@", s);
}


3、  enumerateKeysAndObjectsUsingBlock:                。         ,             ,       for-each               :
[dictionary enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
    NSLog(@"key = %@ and obj = %@", key, obj);
}];

       ,              
[view.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
      
 NSData *data = [NSData dataWithContentsOfURL:[NSURLURLWithString:@"http://s12.mogujie.cn/b7/bao/131011/1jix9_kqywmrcdkfbg26dwgfjeg5sckzsew_400x540.jpg_200x999.jpg"]];
    UIImage *image = [UIImage imageWithData:data];
    NSLog(@"w = %f,h = %f",image.size.width,image.size.height);