THTinderNavigationController
THTinderNavigationController copied to clipboard
NavigationBarItems are misaligned bigger screens
The NavigationBarItems are misaligned on iPhone 6 and iPhone 6 Plus.
True, I have to work on this.
Thank you
@rahuljiresal if you get a chance take a look at my pull request #3
Any update on these positions?
try this in your NavBarItem.m:
-
(void)updateViewWithRatio:(CGFloat)ratio { //... CGFloat screenMiddle = self.superview.frame.size.width / 2; CGFloat difference = self.center.x - screenMiddle; CGPoint moveView = self.center;
moveView.x -= ratio * difference;
self.center = moveView; //... }