自定义我的封装键盘,并在试图控制器里对接 (解决多 输入框问题,把输入框存入到可变数组)

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    CSKeyBoardViewController * RootVC = [[CSKeyBoardViewController alloc]init];
    self.window.rootViewController = RootVC;
    [RootVC release];
    return YES;
}
View Code main.m

相关文章:

  • 2021-05-29
  • 2021-07-16
  • 2021-09-14
  • 2022-01-08
  • 2021-06-16
  • 2021-08-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-02
  • 2021-08-12
  • 2022-12-23
  • 2021-12-04
相关资源
相似解决方案