资源简介

ios苹果app开发入门,object-c,例子,demo,14个实例 初学者难得的学习实例

资源截图

代码片段和文件信息

//  Created by Keith Harrison on 30 July 2011 http://useyourloaf.com
//  Copyright (c) 2011 Keith Harrison. All rights reserved.
//
//  Redistribution and use in source and binary forms with or without
//  modification are permitted provided that the following conditions are met:
//
//  Redistributions of source code must retain the above copyright
//  notice this list of conditions and the following disclaimer.
//
//  Redistributions in binary form must reproduce the above copyright
//  notice this list of conditions and the following disclaimer in the
//  documentation and/or other materials provided with the distribution.
//
//  Neither the name of Keith Harrison nor the names of its contributors
//  may be used to endorse or promote products derived from this software
//  without specific prior written permission.
//
//  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ‘‘AS IS‘‘ AND ANY
//  EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO THE IMPLIED
//  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
//  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
//  DIRECT INDIRECT INCIDENTAL SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES
//  (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
//  LOSS OF USE DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
//  ON ANY THEORY OF LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT
//  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
//  SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 


#import “AirPrinterAppDelegate.h“

@implementation AirPrinterAppDelegate

@synthesize window = _window;
@synthesize navigationController = _navigationController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window.rootViewController = self.navigationController;
    [self.window makeKeyAndVisible];
    return YES;
}

- (void)dealloc
{
    [_window release];
    [_navigationController release];
    [super dealloc];
}

@end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-10-04 15:28  AirPrinter\
     文件        6148  2012-10-04 15:29  AirPrinter\.DS_Store
     目录           0  2012-10-05 11:43  __MACOSX\
     目录           0  2012-10-05 11:43  __MACOSX\AirPrinter\
     文件          82  2012-10-04 15:29  __MACOSX\AirPrinter\._.DS_Store
     目录           0  2012-10-03 18:20  AirPrinter\AirPrinter\
     文件        1255  2012-10-03 18:20  AirPrinter\AirPrinter\AirPrinter-Info.plist
     文件        2098  2012-10-03 18:20  AirPrinter\AirPrinter\AirPrinter-Prefix.pch
     文件        1846  2012-10-03 18:20  AirPrinter\AirPrinter\AirPrinterAppDelegate.h
     文件        2105  2012-10-03 18:20  AirPrinter\AirPrinter\AirPrinterAppDelegate.m
     目录           0  2012-10-03 18:20  AirPrinter\AirPrinter\en.lproj\
     文件          45  2012-10-03 18:20  AirPrinter\AirPrinter\en.lproj\InfoPlist.strings
     文件       14505  2012-10-03 18:20  AirPrinter\AirPrinter\en.lproj\MainWindow.xib
     文件        7551  2012-10-03 18:20  AirPrinter\AirPrinter\en.lproj\RootViewController.xib
     目录           0  2012-10-03 18:20  AirPrinter\AirPrinter\iPad\
     目录           0  2012-10-03 18:20  AirPrinter\AirPrinter\iPad\en.lproj\
     文件       15218  2012-10-03 18:20  AirPrinter\AirPrinter\iPad\en.lproj\MainWindow-iPad.xib
     文件        1859  2012-10-03 18:20  AirPrinter\AirPrinter\main.m
     文件        1714  2012-10-03 18:20  AirPrinter\AirPrinter\RootViewController.h
     文件        2375  2012-10-03 18:20  AirPrinter\AirPrinter\RootViewController.m
     文件        2175  2012-10-03 18:20  AirPrinter\AirPrinter\UYLGenericPrintPageRenderer.h
     文件        4411  2012-10-03 18:20  AirPrinter\AirPrinter\UYLGenericPrintPageRenderer.m
     文件        2338  2012-10-03 18:20  AirPrinter\AirPrinter\WebViewController.h
     文件       10931  2012-10-03 18:20  AirPrinter\AirPrinter\WebViewController.m
     文件        7576  2012-10-03 18:20  AirPrinter\AirPrinter\WebViewController.xib
     目录           0  2012-10-04 15:28  AirPrinter\AirPrinter.xcodeproj\
     文件       16462  2012-10-03 18:20  AirPrinter\AirPrinter.xcodeproj\project.pbxproj
     目录           0  2012-10-04 15:28  AirPrinter\AirPrinter.xcodeproj\project.xcworkspace\
     文件         155  2012-10-04 15:28  AirPrinter\AirPrinter.xcodeproj\project.xcworkspace\contents.xcworkspacedata
     目录           0  2012-10-04 15:28  AirPrinter\AirPrinter.xcodeproj\project.xcworkspace\xcuserdata\
     目录           0  2012-10-04 15:33  AirPrinter\AirPrinter.xcodeproj\project.xcworkspace\xcuserdata\yoyo.xcuserdatad\
............此处省略501个文件信息

评论

共有 条评论