Xcode 開発で、TableViewにCamera Rollの写真を表示する方法
TableViewで、行にあたるものは、”Cell”と呼び、画像とテキストの表示が可能です。
この画像にあたるものを、固定でなく、明細に該当したiphone内のCamera Rollの画像を表示する方法をご紹介します。
iphone上のCamera Roll の状態


アプリ内で、画像とテキスト情報を紐づける処理を行っていますが、ここでは省略します。
◆まず、TableViewに文字を表示する方法
ToDoなどのアプリで使用されている方法になります。
今回、Cell上に画像、テキストを表示するポイントを中心にした内容になります。
storyboard上の定義

mファイル上の定義
表示するデータを一旦配列に入れて、「日付 + コメント」に編集して表示する方法になっています。
2 | @property (weak, nonatomic ) IBOutlet UITableViewCell *textLabel; |
4 | =========================================================================== |
5 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath *)indexPath |
9 | NSString *Wdate = [item sdate]; |
10 | NSString *Wcome = [item come]; |
12 | NSString *str50 = [Wdate stringByAppendingString: @" " ]; |
13 | NSString *str53 = [str50 stringByAppendingString:Wcome]; |
15 | cell.textLabel.text = str53; |
この場合の実行結果(日付 + コメントで表示されます。)

◆ここから、TableViewにcamera Rollの写真を表示する方法です。
mファイル上の定義
TableViewに画像とテキストを表示する方法で、画像を表示する部分の実装部分です。
表示するデータを一旦配列に入れて配列から画像のURLを取得して、URL型に変換して実際の画像にアクセスします。
2 | @property (weak, nonatomic ) IBOutlet UITableViewCell *imageView; |
4 | <h1> @property (weak, nonatomic ) IBOutlet UITableViewCell *textLabel; |
7 | <li>(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath *)indexPath |
15 | NSString *Wgazoou = [item gazou]; |
17 | NSURL * aURL = [ NSURL URLWithString:Wgazoou]; |
18 | ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init]; |
20 | [library assetForURL:aURL resultBlock:^(ALAsset *asset) |
22 | { UIImage *copyOfOriginalImage = |
23 | [UIImage imageWithCGImage:[[asset defaultRepresentation] |
25 | scale:1.0 orientation:UIImageOrientationUp]; |
27 | UIGraphicsBeginImageContext(CGSizeMake(width, height)); |
29 | [copyOfOriginalImage drawInRect:CGRectMake(0, 0, width, height)]; |
31 | UIGraphicsEndImageContext(); |
33 | cell.imageView.image = copyOfOriginalImage; |
34 | cell.imageView.contentMode = UIViewContentModeScaleAspectFill; |
36 | failureBlock:^( NSError *error) { }]; |
この場合の実行結果は、以下のようになります。
画像の表示が次画面経由でしか表示されないため、NGです。
左:画面起動時 右:次画面から戻った時


cellのbackgroundに画像を入れて表示させる方法で画像を画面表示させることもできますが、cellが選択されるとbackgroundの画像が、左端の大きさから、巨大化(Cellの大きさ)で表示され、Apple審査でNGになりました。この方法では、審査を通してもらえません。
◆上記の問題を解決するために行った方法
ダミーの画像を一旦表示することで対処しました。
1 | @property (weak, nonatomic ) IBOutlet UITableViewCell *imageView; |
2 | @property (weak, nonatomic ) IBOutlet UITableViewCell *textLabel; |
4 | =========================================================================== |
7 | <li>(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath *)indexPath |
18 | img_mae = [UIImage imageNamed:@"Icon-40 @2x .png"]; |
20 | UIGraphicsBeginImageContext(CGSizeMake(width, height)); |
22 | [img_mae drawInRect:CGRectMake(0, 0, width, height)]; |
24 | img_ato = UIGraphicsGetImageFromCurrentImageContext(); |
25 | UIGraphicsEndImageContext(); |
27 | cell.imageView.image = img_ato; |
29 | cell.imageView.contentMode = UIViewContentModeScaleAspectFill; |
33 | NSString *Wgazoou = [item gazou]; |
35 | NSURL * aURL = [ NSURL URLWithString:Wgazoou]; |
36 | ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init]; |
38 | [library assetForURL:aURL resultBlock:^(ALAsset *asset) |
40 | { UIImage *copyOfOriginalImage = |
41 | [UIImage imageWithCGImage:[[asset defaultRepresentation] |
43 | scale:1.0 orientation:UIImageOrientationUp]; |
45 | UIGraphicsBeginImageContext(CGSizeMake(width, height)); |
47 | [copyOfOriginalImage drawInRect:CGRectMake(0, 0, width, height)]; |
50 | UIGraphicsEndImageContext(); |
52 | cell.imageView.image = copyOfOriginalImage; |
53 | cell.imageView.contentMode = UIViewContentModeScaleAspectFill; |
55 | failureBlock:^( NSError *error) { }]; |
この場合の実行結果
ダミーの画像を一瞬表示させることで、この問題は解決できました。
表示タイミングの問題と言えますが、ロジック上でダミー処理追加で解決したため、根本の原因は不明です。

