2
我正在開發支持橫向的iPad應用程序UIImagePickerController照片快門不打開
我想要做的是,我想打開按鈕單擊照片庫。 這裏是我的代碼片段,
UIImagePickerController * picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.modalPresentationStyle = UIModalPresentationCurrentContext;
當我寫這篇它不會打開照片庫:( 我不知道我在做adavance錯誤
請幫助和感謝。
添加presentViewcontroller方法 –