zoukankan      html  css  js  c++  java
  • IOS Note

    Application Delegate(应用程序委托)

    Application Name: SingleView

    SingleViewAppDelegate.h

    #import <UIKit/UIKit.h>
    
    @interface SingleViewAppDelegate : UIResponder
        <UIApplicationDelegate>
        
    @property (strong, nonatomic) UIWindow *window;
    
    @property (strong, nonatomic) SingleViewViewController *viewController;
    
    @end

    SingleViewAppDelegate.m

    #import "SingleViewAppDelegate.h"
    #import "SingleViewViewController.h"
    
    @implementation SingleViewAppDelegate
    
    @synthesize window = _window;
    @synthesize viewController = _viewController;
    
    - (void) dealloc
    {
        [_window release];
        [_viewController release];
        [super dealloc];
    }
    
    - (BOOL) application: (UIApplication *)application
    didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
    {
        self.window = [[[UIWindow alloc] initWithFrame: [[UIScreen mainScreen] bounds]] autorelease];
        self.viewController = [[[SingleViewViewController alloc]
                                initWithNibName: @"SingleViewViewController"
                                bundle: nil] autorelease];
        self.window.rootViewController = self.viewController;
        [self.window makeKeyAndVisible];
        
        return YES;
    }
  • 相关阅读:
    drf认证组件
    播放音频
    推荐
    makefile编写
    qt文件操作mv
    qt文件http网络下载
    为qt在window上用源代码编译库 (部分转载)
    qt线程池(转)
    crc校验
    树莓派网络配置查询
  • 原文地址:https://www.cnblogs.com/davidgu/p/3469823.html
Copyright © 2011-2022 走看看