This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
5.1 UIImagePickerController
tamotamago edited this page Apr 24, 2013
·
10 revisions
UIImagePickerController Class Reference
UIImagePickerController Delegate Protocol
UIImagePickerController の mediaType は default kUTTypeImage で写真のみの選択が可能となっています。
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info を実装して、写真選択完了のイベントを取得しましょう。
photo 選択の場合 info の中身
{
UIImagePickerControllerMediaType = "public.image";
UIImagePickerControllerOriginalImage = "<UIImage: 0x75387a0>";
UIImagePickerControllerReferenceURL = "assets-library://asset/asset.PNG?id=25FBEDDB-D498-46D0-8DB7-4ABEAA3A288D&ext=PNG";
}
movie 選択の場合の info の中身
はじめに
-
導入
-
1.3 UIViewController1 UIViewController のカスタマイズ(xib, autoresizing)
-
UIKit 1 - container, rotate-
-
UIKit 2- UIView -
-
UIKit 3 - table view -
-
UIKit 4 - image and text -
-
ネットワーク処理
-
ローカルキャッシュと通知
-
Blocks, GCD
-
設計とデザインパターン
-
開発ツール
-
テスト
-
In-App Purchase
-
付録