iOS 使用xib定義一個View,修改frame無效問題解決,iosxib

來源:互聯網
上載者:User

iOS 使用xib定義一個View,修改frame無效問題解決,iosxib

遇到過好多次使用自訂view,修改frame無效問題, 之前都是放棄xib,直接手寫,發現手寫簡單的還行,複雜的UI就坑逼了。所以還是需要用到可視化編輯的xib。

整理一下,自己備忘也供iOS開發的朋友參考:

 

一般我們會直接這樣寫:

XPGovRecUnitView *recUnitView = [[[NSBundle mainBundle] loadNibNamed:@"XPGovRecUnitView" owner:self options:nil] firstObject];            recUnitView.tag = 10000+i;            recUnitView.delegate = self;            recUnitView.frame = CGRectMake(i*89, 0, 89, 139);

  

這是我一個項目中的代碼,但是這樣出現了一個問題就是iPhone 6,6Plus以上的正常, iPhone5s螢幕尺寸的就顯示不正常了。

使用

UIView *recUnitView = [[UIView alloc] initWithFrame:CGRectMake(i*89, 0, 89, 139)];

調試後發現,使用alloc的方式iPhone5也是正常的。但是這樣就要手寫代碼,往這個UIView 添加控制項

 

解決方案:

1. 先把 XPGovRecUnitView.xib這個xib檔案的屬性設定一下

  在右側屬性欄中,
  找到Interface Builder Document , 把Use Auto layout的勾去掉
  找到Simulated Metrics , 把Size 設定成None, 沒有None就是Freeform

2.修改XPGovRecUnitView.m代碼 

  

#import "XPGovRecUnitView.h"@interface XPGovRecUnitView (){    CGRect tempframe;}@end@implementation XPGovRecUnitView-(id)initWithFrame:(CGRect)frame{    self = [super initWithFrame:frame];    if (self) {        NSArray *nibs=[[NSBundle mainBundle]loadNibNamed:@"XPGovRecUnitView" owner:nil options:nil];        self=[nibs objectAtIndex:0];                tempframe = frame;                [self initSubViews];    }    return self;}-(void)drawRect:(CGRect)rect{    self.frame = tempframe;    }@end

  

3.使用時代碼

  

XPGovRecUnitView *recUnitView = [[XPGovRecUnitView alloc] initWithFrame:CGRectMake(i*89, 0, 89, 139)];            recUnitView.tag = 10000+i;            recUnitView.delegate = self;

  

這樣就正常了。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.