ws
ws
Просто много всего удобного в этих табах, появилась такая необходимость. Может можно добавить какую проверку на вложенность?
Было бы здорово. Вдруг кому еще пригодится.
I did the following (works only on iOS 7): ``` objectivec [self setEdgesForExtendedLayout:UIRectEdgeNone]; ``` Or you can set the background on the navigationBar and tabBar, the effect will be the...
Really miss tap gesture in edit mode. After deleting, a user must tap an empty space - it's not intuitive. Simply click on any item and exit the edit mode.
It is clear that the UIModalPresentationCurrentContext - problem with the orientation. Screenshot of the root view is not the answer. It can try to make a custom animations to view?
If the height of the content is less than the height of the screen(or tableView), set contentSize for tableView equal height of the screen.
Может кто-нибудь помочь понять, возможно ли это вообще, в примере Draggable Annotation View Controller получить уведомление об окончании перетаскивания пина?
Беру пример из yandexmapkit-ios. В DraggableAnnotationViewController.h добавил `@interface DraggableAnnotationViewController : MapViewController ` В `- (YMKAnnotationView *)mapView:(YMKMapView *)aMapView viewForAnnotation:(id)anAnnotation` добавил `[view setDelegate:self];` И добавил `- (void)draggablePinAnnotationViewDidEndMoving:(YMKDraggablePinAnnotationView *)view{ NSLog(@"%s",__PRETTY_FUNCTION__); }` В ответ...
view ``` objective-c - (YMKAnnotationView *)mapView:(YMKMapView *)aMapView viewForAnnotation:(id)anAnnotation { static NSString * identifier = @"pointAnnotation"; YMKDraggablePinAnnotationView * view = (YMKDraggablePinAnnotationView *)[aMapView dequeueReusableAnnotationViewWithIdentifier:identifier]; if (view == nil) { view = [[YMKDraggablePinAnnotationView...
Учитывая, что view существует и вроде бы все должно работать, то в чем еще может быть причина?