iPhone開發學習筆記005——使用XIB自訂一個UIView,然後將這個view添加到controller的vie

來源:互聯網
上載者:User

一、建立一個single view application類型的iOS application工程,名字取為CustomView,如,我們不往CustomViewViewController.xib中添加任何控制項:


 二、建立一個CustomView.xib,過程如下:





然後往介面上拖一個label和一個button:




接下來得建立CustomViewViewController.xib中的view與CustomView.xib的關聯了,即將Custom.xib動態載入,然後將該view做為CustomViewViewController的view的subview,放置於正中顯示(設定CustomView的中心點為整屏正中央),具體代碼如下:


- (void)viewDidLoad

{

    [superviewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

    NSArray *nib = [[NSBundlemainBundle]loadNibNamed:@"CustomView"owner:selfoptions:nil];

    UIView *tmpCustomView = [nibobjectAtIndex:0];

   

   CGRect tmpFrame = [[UIScreenmainScreen] bounds];

    [tmpCustomView setCenter:CGPointMake(tmpFrame.size.width / 2, tmpFrame.size.height / 2)];

   

    [self.viewaddSubview:tmpCustomView];

   

}

運行,最後效果如下所示:





Demo:http://www.bkjia.com/uploadfile/2012/0225/20120225115338881.rar

 

摘自 Code Heaven

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.