Mykola Vyshynskyi

Results 3 comments of Mykola Vyshynskyi

if there is a small line or item spacing moveCurrentItemToIndexPath never called so revert to previous condition in my project (vertical layout with 2pt line spacing, and one elements in...

http://developer.apple.com/library/ios/#documentation/uikit/reference/UINavigationController_Class/Reference/Reference.html#//apple_ref/occ/instm/UINavigationController/setNavigationBarHidden:animated:

this should solve the problem: ``` objc - (void)setSelectedSegmentIndex:(NSUInteger)index animated:(BOOL)animated { BOOL sendActions = (_selectedSegmentIndex != index); _selectedSegmentIndex = index; if(self.superview) { if (sendActions) [self sendActionsForControlEvents:UIControlEventValueChanged]; ```