国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS NSNotification 鍵盤遮擋問題的解決辦法

2020-07-26 02:40:21
字體:
來源:轉載
供稿:網友

IOS NSNotification 鍵盤遮擋問題的解決辦法

從鍵盤通知中獲得鍵盤尺寸

鍵盤尺寸存在于NSNotification中。

1;在AddDrinkViewController中添加keyboardDidShow和keyboardDidHide方法

2;在viewWillAppear中注冊UIKeyboardDidshowNotification與UIKeyboardDidHideNotification。

3;在viewWillDisappear中取消對所有事件的訂閱注冊

4;在AddDrinkViewController中添加一個Bool成員,跟蹤鍵盤是否可見的狀態。

//// ViewController.h// scrol//// Created by gao wuhang on 12-12-5.// Copyright (c) 2012年 gao wuhang. All rights reserved.//#import@interface ViewController : UIViewController{  BOOL keyboardVisible;  UIScrollView *scrollView;}- (void)keyboardDidShow: (NSNotification*) notif;- (void)keyboardDidHide: (NSNotification*) notif;@property (nonatomic, retain) UIScrollView *scrollView;@end //// ViewController.m// scrol//// Created by gao wuhang on 12-12-5.// Copyright (c) 2012年 gao wuhang. All rights reserved.//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController@synthesize scrollView;- (void)viewWillAppear:(BOOL)animated{  [super viewWillAppear:animated];  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidShow:) name:UIKeyboardDidShowNotification object:nil];  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidHide:) name:UIKeyboardDidHideNotification object:nil];}- (void)viewWillDisappear:(BOOL)animated{  [[NSNotificationCenter defaultCenter] removeObserver:self];}- (void) keyboardDidShow:(NSNotification *)notif {NSLog(@"%@", @"Received UIKeyboardDidShowNotification"); if (keyboardVisible) {NSLog(@"%@", @"Keyboard is already visible. Ignoring notifications.");return;} // The keyboard wasn't visible beforeNSLog(@"Resizing smaller for keyboard"); // Get the origin of the keyboard when it finishes animatingNSDictionary *info = [notif userInfo];NSValue *aValue = [info objectForKey:UIKeyboardFrameEndUserInfoKey]; // Get the top of the keyboard in view's coordinate system.// We need to set the bottom of the scrollview to line up with itCGRect keyboardRect = [aValue CGRectValue];  keyboardRect = [self.view convertRect:keyboardRect fromView:nil];CGFloat keyboardTop = keyboardRect.origin.y;  // Resize the scroll view to make room for the keyboard  CGRect viewFrame = self.view.bounds;viewFrame.size.height = keyboardTop - self.view.bounds.origin.y; self.scrollView.frame = viewFrame;keyboardVisible = YES;}- (void) keyboardDidHide:(NSNotification *)notif {NSLog(@"%@", @"Received UIKeyboardDidHideNotification"); if (!keyboardVisible) {NSLog(@"%@", @"Keyboard already hidden. Ignoring notification.");return;} // The keyboard was visibleNSLog(@"%@", @"Resizing bigger with no keyboard");  // Resize the scroll view back to the full size of our viewself.scrollView.frame = self.view.bounds;keyboardVisible = NO;}- (void)viewDidLoad{  scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];//  scroll.contentSize = CGSizeMake(1000, 1000);  [self.view addSubview:scrollView];//  UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];//  [button setBackgroundColor:[UIColor blackColor]];//  [scroll addSubview:button];  UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(100, 300, 100, 100)];  textView.text = @"222";  textView.font = [UIFont systemFontOfSize:20];  [scrollView addSubview:textView];  [super viewDidLoad];  [textView release];  self.scrollView.contentSize = self.view.frame.size;// Do any additional setup after loading the view, typically from a nib.}- (void)dealloc{  [scrollView release];  [super dealloc];}- (void)didReceiveMemoryWarning{  [super didReceiveMemoryWarning];  // Dispose of any resources that can be recreated.}@end

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永靖县| 武汉市| 奉新县| 株洲县| 廉江市| 九台市| 华亭县| 江油市| 山西省| 铜陵市| 平顶山市| 镶黄旗| 鸡西市| 三门峡市| 叶城县| 隆尧县| 江西省| 綦江县| 微山县| 乐昌市| 平顶山市| 南汇区| 本溪市| 板桥市| 龙州县| 恭城| 铜山县| 乐东| 无锡市| 江油市| 鄂温| 淮滨县| 黄平县| 抚松县| 厦门市| 霍山县| 闸北区| 彩票| 益阳市| 彰武县| 安龙县|