*通過IBOutle連接來獲取控件局骤,界面處理
1虾宇、在項目瀏覽器窗口中選中main.storyboard文件鹃愤,打擊Xcode右上角的輔助視圖簇搅,Xcode會在編輯窗口打開輔助器。(故事板中簡單的控件拖拽就不介紹了)
2软吐、由于故事板中控制器關(guān)聯(lián)的類為ViewController瘩将,當(dāng)選中故事板的同時,打開輔助編輯器凹耙,通常會在Xcode左邊現(xiàn)濕故事板姿现,右側(cè)會自動切換到控制器類的實現(xiàn)文件。選中左側(cè)的第一個TextFile肖抱,按下鍵盤上的control鍵备典,按住鼠標(biāo)不放,將TextFile文件拖向?qū)?yīng)類的.m的類擴展部分意述,此時會看到一條藍色的線條提佣,從TextFile開始吮蛹,一直連接到光標(biāo)結(jié)束。松開鼠標(biāo)左鍵拌屏,彈出一個灰色框潮针。如圖
3、右擊Button倚喂,會出現(xiàn)如圖顯示的黑色框每篷,選擇Touch up inside(與text file 類似的拖線)創(chuàng)建Button與.m的關(guān)聯(lián),創(chuàng)建相應(yīng)的單機事件端圈,
4焦读、關(guān)聯(lián)完成后,在最左邊會出現(xiàn)黑色的小圓點舱权,代表拖線成功矗晃。
*實現(xiàn)計算功能
在ViewController.m中的jisuan方法中,編寫處理代碼即可刑巧,單機計算按鈕喧兄,獲取倆個 Text File的內(nèi)容无畔,并將最后的結(jié)果顯示在最右側(cè)的Lable上啊楚。
#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UITextField *num1;
@property (weak, nonatomic) IBOutlet UITextField *num2;
@property (weak, nonatomic) IBOutlet UILabel *sum;
- (IBAction)btnClick:(id)sender;
@property (weak, nonatomic) IBOutlet UIButton *btn;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.btn.layer.cornerRadius = 6;
self.btn.clipsToBounds = YES;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)btnClick:(id)sender {
//獲取用戶的輸入的值
long Num1 = self.num1.text.intValue;
long Num2 = self.num2.text.intValue;
//計算和
long Sum = Num1 + Num2;
//把結(jié)果(整型在轉(zhuǎn)化為字符型)顯示在lable上。
self.sum.text = [NSString stringWithFormat:@"%ld",Sum];
}
*最后再想大家介紹一下浑彰,如何將鍵盤調(diào)回恭理,與調(diào)出,
- (void)touchesBegan:(NSSet*)touches withEvent:(nullable UIEvent *)event;//點擊屏幕會調(diào)用此方法
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event{
//點擊屏幕任何位置叫回鍵盤
[self.view endEditing:YES ];
}
*程序調(diào)試的簡單動畫