View Controllerやinterfacebuilderはありません。これをコードだけで構築したいです。ボタンをクリックしてカメラロールに移動できる方法を設定しましたが、次に何をすべきか迷っています。画像を選択する方法が必要です。これにより、画像を画像ビューに追加できます。何をすべきかについてのヒントをいただければ幸いです。
- (void)viewDidLoad {
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 100, 50)];
[self.view addSubview: imgView];
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(aMethod)
forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[self.view addSubview:button];
}
-(void)aMethod{
UIImagePickerController* picker = [[UIImagePickerController alloc] init];
picker.sourceType =UIImagePickerControllerSourceTypePhotoLibrary;
picker.delegate = self;
picker.allowsImageEditing = YES;
[[self navigationController] presentModalViewController:picker animated:YES];
}