我在這裏有一個問題,我需要添加一個人在我的應用程序中使用coredata的細節。我需要存儲一個圖像還與每個人detail.and我也需要在下一個視圖控制器中的表格視圖中顯示這些詳細信息.i可以保存並顯示除image之外的所有其他詳細信息。我可以使用coredata保存並顯示該信息嗎?使用coredata保存並加載圖像在我的手機畫廊
-2
A
回答
0
您可以在您的Xcode項目保存圖像並保存圖像名稱和路徑的核心數據,需要
0
下面的代碼
使用添加委託給你的h文件時引用它們在圖像視圖開照相館
UIImagePickerController *picker=[[UIImagePickerController alloc]init];
picker.sourceType=UIImagePickerControllerSourceTypePhotoLibrary;
picker.delegate=self;
[self presentViewController:picker animated:YES completion:nil];
使用該委託事件獲得所選圖像並將其保存到本地目錄,
#pragma mark - Imagepicker delegate
- (void)imagePickerController:(UIImagePickerController *)imagePicker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
UIImage *origImage = [info objectForKey:UIImagePickerControllerOriginalImage];
//Code to save image in local directory
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *savedImagePath = [documentsDirectory stringByAppendingPathComponent:@"savedImage.png"];
UIImage *image = origImage.image; // origImage is my image from photo library
NSData *imageData = UIImagePNGRepresentation(image);
[imageData writeToFile:savedImagePath atomically:NO];
[imagePicker dismissViewControllerAnimated:YES completion:nil];
}
下面的代碼
使用從畫廊加載圖像
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *ImagePath = [documentsDirectory stringByAppendingPathComponent:@"savedImage.png"];
UIImage *img = [UIImage imageWithContentsOfFile:ImagePath];
在這裏的img你可以得到你的形象
+0
我需要從手機圖庫中選擇圖片.... – 2014-10-11 17:18:00
相關問題
- 1. 從plist中圖像保存到畫廊
- 2. JQueryMobile打開手機畫廊,並選擇一個圖像
- 3. 使用手機的畫廊爲ViewPager
- 4. 保存圖像從相機或畫廊在手機上的畫布和旋轉和裁剪後
- 5. 保存在Android上的設備/畫廊的畫布圖像
- 6. 在手機中下載並保存靜態圖像
- 7. J2ME:從服務器下載圖像並在手機上保存
- 8. 加載畫廊與particuler圖像位置
- 9. Android:Volley圖像加載器與畫廊
- 10. 將圖像保存到從圖庫加載的手機
- 11. 繪製畫布後在手機中保存畫布圖像
- 12. 攝像機意圖/活動 - 避免保存到畫廊
- 13. Android Studio如何在應用程序中從相機捕獲的手機畫廊中保存圖像?
- 14. imageview從相機或畫廊加載圖像
- 15. HTML5強制拍攝圖像並且不從畫廊加載
- 16. 將隨機圖像保存並加載到獨立存儲
- 17. CoreData - 保存/加載幫助!
- 18. 將圖像保存到內部存儲器,並會出現在畫廊
- 19. 使用c下載並保存圖像#
- 20. 不需要的圖像被保存在畫廊
- 21. 鈦:避免保存的圖像顯示在畫廊
- 22. 幫助加載「畫廊」畫廊與.load
- 23. jQuery的畫廊與Ajax加載的圖像在後臺?
- 24. Xcode保存並加載圖像
- 25. UIImagePickerController - 保存並加載圖像?
- 26. 保存並加載圖像SQLite C#
- 27. 怎麼畫的圖像和圖像保存到手機圖庫中的Android
- 28. 在Android手機中啓動畫廊
- 29. iOS圖像畫廊
- 30. 文件夾中保存的相機圖片比畫廊等
我搜索的代碼,但沒有得到它....ü可以幫我一個鏈接代碼? – 2014-10-11 13:54:38