我们可以用代码编写界面,同样也可以在项目中扩展名为xib的文件中设计(图中选中的)
打开后,在Xcode的右下角有一些常用的控件
可以直接把这些控件用鼠标拖到界面里使用:
如下用了7个Label和一个Button组成的简单界面
然后编写定义这个界面内控件的类文件:
/*ViewController.h*/
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
{
//定义三个Label
UILabel *titleLabel;
UILabel *priceLabel;
UILabel *summaryLabel;
}
@property(nonatomic,retain)IBOutlet UILabel *titleLabel;
@property(nonatomic,retain)IBOutlet UILabel *priceLabel;
@property(nonatomic,retain)IBOutlet UILabel *summaryLabel;
-(IBAction)Edit:(id)sender;
@