歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

iPhone-用代碼創建界面(Creating Views from Code)

首先新建一個基於視圖的項目,名字為ViewTest;

在ViewTestViewController.m文件viewDidLoad方法中寫上如下代碼:

  1. //創建一個視圖UIView對象,獲取初始化屏幕大小,UIScreen mainScreen該設備的內部屏幕,applicationFrame應用程序的屏幕面積幀點   
  2.     UIView *view =  
  3.     [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];  
  4.       
  5.     //設置背景顏色:灰   
  6.     view.backgroundColor = [UIColor lightGrayColor];  
  7.     //創建標簽   
  8.     CGRect frame = CGRectMake(10, 15, 300, 20);//設置標簽的位置及大小x y width height表示左上角和大小   
  9.     UILabel *label = [[UILabel alloc] initWithFrame:frame]; //創建並初始化標簽,並且使大小是frame   
  10.     label.textAlignment = UITextAlignmentCenter; //標簽中文字的對齊方向是居中   
  11.     label.backgroundColor = [UIColor clearColor]; //標簽背景顏色透明的   
  12.     label.font = [UIFont fontWithName:@"Verdana" size:20]; //標簽文字的Verdana體20號大小   
  13.     label.text = @"This is a label";//標簽文字   
  14.     label.tag = 1000;  
  15.     //創建text   
  16.     frame = CGRectMake(10, 70, 300, 30);  
  17.     UITextField *text=[[UITextField alloc]initWithFrame:frame];  
  18.     text.backgroundColor=[UIColor whiteColor];  
  19.     text.text=@"我是任海麗";  
  20.     //創建按鈕   
  21.     frame = CGRectMake(10, 120, 300, 50);//按鈕位置大小   
  22.     UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];  
  23.     button.frame = frame;  
  24.     [button setTitle:@"Click Me, Please!" forState:UIControlStateNormal];  
  25.     button.backgroundColor = [UIColor clearColor];  
  26.     button.tag = 2000;  
  27.     [button addTarget:self  
  28.                action:@selector(buttonClicked:) //響應事件   
  29.      forControlEvents:UIControlEventTouchUpInside];  
  30.     //把標簽,文本和按鈕添加到view視圖裡面   
  31.     [view addSubview:label];  
  32.     [view addSubview:button];  
  33.     [view addSubview:text];  
  34.     self.view = view;    

事件響應方法彈出一個警告框:

  1. -(IBAction) buttonClicked: (id) sender{  
  2.     UIAlertView *alert = [[UIAlertView alloc]  
  3.                           initWithTitle:@"Action invoked!" message:@"Button clicked!"  
  4.                           delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];  
  5.     [alert show];  
  6. }  

給出效果圖:

什麼視圖界面,你都可以用代碼寫出來,並設置屬性,當然這個不是簡便的方法,沒有直接拖來的方便,不過這樣做是為了熟悉代碼並知道是怎麼實現的;每個控件都有好多屬性,並且要明白是怎麼用的。學習過程 中不怕麻煩,希望跟大家一塊努力學習!有什麼不好的地方,請多指出!!!

Copyright © Linux教程網 All Rights Reserved