0

私はこの質問への答えを見つけようとしていたるところを見てきました。私はあなたが写真を撮るカメラスクリーンを持っていて、写真はどこかに保存する必要があり、後でテーブルビューからアクセスできます。

4

1 に答える 1

2

UIImagePickerControllerにキャプチャされた画像の保存NSArrayは有効です。

あなたはこのようなものを持つことができます:

/* ViewController.h */
@interface ViewController : UIViewController <UIImagePickerControllerDelegate>

@property (nonatomic, strong) UIImagePickerController *imagePicker;
@property (nonatomic, strong) NSMutableArray *photos;

/* ViewController.m */
@synthesize imagePicker = _imagePicker;
@synthesize photos = _photos;

// initialize imagePicker
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
self.imagePicker = imagePicker;

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    UIImage *selectedImage = [info objectForKey:UIImagePickerControllerOriginalImage];
    [self.photos addObject:selectedImage];
}

編集:配列からの画像をテーブルビューで表示するには、次のようなものを使用できます。

// I'm assuming you only have 1 section for the table view

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.photos count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // get / instantiate cell

    // This will use the default imageView in a UITableViewCell.
    cell.imageView.image = [self.photos objectAtIndex:indexPath.row];
}
于 2012-09-26T01:04:13.907 に答える