iOS 開發小技巧

躍然發表於2015-08-13

一、收起鍵盤

在UIViewController中收起鍵盤,除了呼叫相應控制元件的resignFirstResponder方法外,還有另外三種方法:
* 1.過載UIViewController中的touchesBegin方法,然後在裡面執行[self.view endEditing:Yes];這樣單擊UIViewContrloller的任意地方,就可以收起鍵盤。
* 2.直接執行[[UIApplication shareApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];
* 3.直接執行[[[UIApplication shareApplication] keyWindow] endEditing:YES];

二、直接上圖了

1.JPG
2.JPG
3.JPG

相關文章