亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS解決TextField被鍵盤遮住的問題

發布時間:2020-06-18 15:02:25 來源:網絡 閱讀:899 作者:杜甲同學 欄目:移動開發


首先,我們在ViewController.h中

@interface ViewController : UIViewController<UITextFieldDelegate>


@property (strong, nonatomic) UIScrollView* scrollView;

@property (strong, nonatomic) UITextField* textField;

@end


之后在ViewController.m


@implementation ViewController


- (void)viewDidLoad

{

   [superviewDidLoad];


self.scrollView = [[UIScrollViewalloc] initWithFrame:CGRectMake(0, 0, 320, 600)];

   [self.viewaddSubview:self.scrollView];



self.textField = [[UITextFieldalloc] initWithFrame:CGRectMake(50, 400, 100, 30)];

self.textField.backgroundColor = [UIColorwhiteColor];

   [self.scrollViewaddSubview:self.textField];


   [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(textShowBegin:) name:UIKeyboardWillShowNotificationobject:nil];


   [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(keyBoardDidHidden) name:UIKeyboardWillHideNotificationobject:nil];


   [self.textFieldaddTarget:selfaction:@selector(textFieldResign) forControlEvents:UIControlEventEditingDidEndOnExit];



}

-(void)keyBoardDidHidden

{

self.scrollView.contentInset = UIEdgeInsetsZero;

}

-(void)textFieldResign

{

   [self.textFieldresignFirstResponder];

}




-(void)textFieldDidBeginEditing:(UITextField *)textField

{

self.textField = textField;

}

-(void)textShowBegin:(NSNotification*)aNotification

{

NSDictionary* info = aNotification.userInfo;

NSLog(@"%@",info);


CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;

UIEdgeInsets contentInsets = UIEdgeInsetsMake(0, 0, kbSize.height, 0);



self.scrollView.contentInset = contentInsets;

//獲取整個視圖的大小和位置

CGRect aRect = self.view.frame;


   aRect.size.height -= kbSize.height;

if (!CGRectContainsPoint(aRect, self.textField.frame.origin)) {


CGPoint scrollPoint = CGPointMake(0, self.textField.frame.origin.y - kbSize.height);

       [self.scrollViewsetContentOffset:scrollPoint animated:YES];


   }


}

下載地址 "TextFieldKB1119.zip"  http://vdisk.weibo.com/s/Et2R_



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

满城县| 巴塘县| 永德县| 榆社县| 武宣县| 开鲁县| 甘谷县| 天长市| 冀州市| 朝阳市| 迁安市| 监利县| 松溪县| 八宿县| 时尚| 乌拉特后旗| 靖州| 忻州市| 宣汉县| 旅游| 华蓥市| 江川县| 疏附县| 长阳| 富平县| 宕昌县| 丰顺县| 湘西| 博罗县| 安庆市| 苗栗县| 漯河市| 磐石市| 藁城市| 灵武市| 张家口市| 双桥区| 绥中县| 仁怀市| 乌拉特前旗| 公安县|