Wie der Titel, nachdem ich ein Foto mit meiner iphone Kamera gemacht habe, wie bekomme ich die ALAsset
, die das Foto ist?iOS: Nachdem ich Foto genommen habe, benutze meine iphone Kamera, wie bekomme ich das Bild Counter-ALAsset?
Antwort
ALAssetsLibrary *al = [[ALAssetsLibrary alloc] init];
[al enumerateGroupsWithTypes:ALAssetsGroupAll
usingBlock:^(ALAssetsGroup *group, BOOL *stop)
{
[group enumerateAssetsUsingBlock:^(ALAsset *asset, NSUInteger index, BOOL *stop)
{
if (asset)
{
.. do something with the asset
}
}
];
}
failureBlock:^(NSError *error)
{
// User did not allow access to library
.. handle error
}
];
dank Ihrer Antwort, weil ich die Kamera verwenden, um ein Foto zu machen, wie kann Ich bekomme das Foto? das erste Gut? oder kann ich das Asset zum letzten Mal bekommen? wenn kann, wie? – lme
verwenden Sie den Imagepicker, um ein Foto aufzunehmen? –
Haben Sie diese Methode hinzugefügt? - (void) imagePickerController: (UIImagePickerController *) Auswahl didFinishPickingMediaWithInfo: (NSDictionary *) info –
http://stackoverflow.com/questions/28255789/getting-url-of-uiimage-selected-from-uiimagepickercontroller sehen diese –