How save images in home directory?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I am making an application in which i have use Json parsing. With the help of json parsing i get photo url which is saved in string. To show images in my cell i use this code NSString * strURL =[ NSString stringWithFormat :@ "%@" , [ list_photo objectAtIndex : indexPath . row ]]; NSData * imageData = [[ NSData alloc ] initWithContentsOfURL : [ NSURL URLWithString : strURL ]]; CGRect myImage = CGRectMake ( 13 , 5 , 50 , 50 ); UIImageView * imageView = [[ UIImageView alloc ] initWithFrame : myImage ]; [ imageView setImage :[ UIImage