在iOS11上當使用如下代碼設置時
- UIButton *shareButton = [UIButton buttonWithType:(UIButtonTypeCustom)];
- shareButton.frame = CGRectMake(0, 0, 30, 30);
- shareButton.backgroundColor = [UIColor blueColor];
- [shareButton setImage:[UIImage imageNamed:@"mv_actionIconSaveToAlbum"] forState:(UIControlStateNormal)];
- UIBarButtonItem *rightBtnItem = [[UIBarButtonItem alloc] initWithCustomView:shareButton];
- self.navigationItem.rightBarButtonItem = rightBtnItem;
如果圖片大小大於按鈕設置的大小 ,設置的button的frame將不起作用。系統將采用最大區域展示。圖片大小小於設置的button的frame時 不會出現這個問題。