摘要:
UIImageView *tmp = [[UIImageView alloc]initWithFrame:CGRectMake(5.0f, 5.0f, 40.0f, 40.0f)]; tmp.image = self.friendRecord.appIcon; [tmp setContentMode:UIViewContentModeScaleAspectFit];按照一定比例缩放图片后需要注意使用UIViewContentModeScaleAspectFit才可以正常显示否则总是铺满全屏显示的 阅读全文
摘要:
You cannot add nil to an NSMutableArray, and you will raise an exception if you try to.There's NSNull, though:NSNull*myNull =[NSNull null];[myMutableArray addObject:myNull];nsmutablearray不能添加nil可以是nsnull,所以在向nsmutablearray中添加string时候需要判断一下string是否是nil的然后再添加 阅读全文