2015-04-27 91 views

回答

0

創建圖像性能良好的格式,並實現代碼如下出口。

@property(nonatomic, strong) UIIImage *photoImage; 
@property(nonatomic, strong) IBOutlet UITableView *tableview; 
在didFinishPickingMediaWithInfo .m文件

:方法:

-(void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 
{ 
    UIImage *image; 
    image = (UIImage *) 
    [info valueForKey:UIImagePickerControllerOriginalImage]; 
    self.photoImage = image; 
    [self.tableView reloadData]; //call reloadData method to load data with image 
    UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil); 
    [picker dismissViewControllerAnimated:YES completion:nil]; 
} 

中的cellForRowAtIndexPath:方法:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 

    UITableViewCell *cell = [self.movieTable dequeueReusableCellWithIdentifier:@"cell"]; 
    cell.imageView.image = self.photoImage; 
    or use array and add image to array in didFinishPickingMediaWithInfo: and use the image 

    cell.imageView.image = [self.photoArray objectAtIndex:0]; 

} 

這將幫助你:)。

+0

謝謝,這將幫助我! – Daniela

0

您可以使用以下格式。

字典數組。 陣列包含多個字典,每個字典包含您的數據,如圖像的參考和短信

可能,這將是在.h文件中存儲數據

相關問題