1. iOS11 navigationItem.titleView 適配問題
自定義導(dǎo)航欄 titleView 的時(shí)候,iOS 11 之前沒問題,正常居中,但在 iOS 11 上位置不正確蕾总,跑到左邊去了,解決方法如下:
#import <UIKit/UIKit.h>
@interface NavLogoTitleView : UIView
@end
@implementation NavLogoTitleView
/**
解決 iOS11 navigationItem.titleView 不居中
*/
- (CGSize)intrinsicContentSize
{
return CGSizeMake(171.f, 34.f);
}
@end