Bardzo mnie to denerwowało - jestem już blisko implementacji własnego niestandardowego selektora obrazów za pomocą AssetsLibrary.
Ale w międzyczasie ten hack pracował dla mnie - wyświetlam selektor, szukając widoku przewijania w hierarchii widoku i przewijam go do końca, mniej więcej. Musi być animowany, jak to się dzieje, gdy widok jest już załadowany - ale wciąż jest lepszy niż użytkownik, który musi przeglądać 5000 zdjęć, aż dotrą do najnowszych.
[self presentViewController:self.imagePickerController animated:YES completion:^() {
// scroll to the end - hack
UIView *imagePickerView = imagePickerController.view;
UIView *view = [imagePickerView hitTest:CGPointMake(5,5) withEvent:nil];
while (![view isKindOfClass:[UIScrollView class]] && view != nil) {
// note: in iOS 5, the hit test view is already the scroll view. I don't want to rely on that though, who knows
// what Apple might do with the ImagePickerController view structure. Searching backwards from the hit view
// should always work though.
//NSLog(@"passing %@", view);
view = [view superview];
}
if ([view isKindOfClass:[UIScrollView class]]) {
//NSLog(@"got a scroller!");
UIScrollView *scrollView = (UIScrollView *) view;
// check what it is scrolled to - this is the location of the initial display - very important as the image picker
// actually slides under the navigation bar, but if there's only a few images we don't want this to happen.
// The initial location is determined by status bar height and nav bar height - just get it from the picker
CGPoint contentOffset = scrollView.contentOffset;
CGFloat y = MAX(contentOffset.y, [scrollView contentSize].height-scrollView.frame.size.height);
CGPoint bottomOffset = CGPointMake(0, y);
[scrollView setContentOffset:bottomOffset animated:YES];
}
}];
to walnięcie, po prostu mówiąc. dzięki. – nickthedude