Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
yshrkt committed Sep 13, 2012
1 parent 51df86c commit 62e8999
Show file tree
Hide file tree
Showing 16 changed files with 748 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pbxproj -crlf -diff
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Xcode
build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside

# Mac
.DS_Store
Original file line number Diff line number Diff line change
@@ -0,0 +1,293 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
9237F8391601B28C00F6BD36 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9237F8381601B28C00F6BD36 /* UIKit.framework */; };
9237F83B1601B28C00F6BD36 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9237F83A1601B28C00F6BD36 /* Foundation.framework */; };
9237F83D1601B28C00F6BD36 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9237F83C1601B28C00F6BD36 /* CoreGraphics.framework */; };
9237F8431601B28C00F6BD36 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9237F8411601B28C00F6BD36 /* InfoPlist.strings */; };
9237F8451601B28C00F6BD36 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9237F8441601B28C00F6BD36 /* main.m */; };
9237F8491601B28C00F6BD36 /* SAAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9237F8481601B28C00F6BD36 /* SAAppDelegate.m */; };
9237F84B1601B28C00F6BD36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 9237F84A1601B28C00F6BD36 /* Default.png */; };
9237F84D1601B28C00F6BD36 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 9237F84C1601B28C00F6BD36 /* [email protected] */; };
9237F84F1601B28C00F6BD36 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 9237F84E1601B28C00F6BD36 /* [email protected] */; };
9237F8591601B7FC00F6BD36 /* SAViewAnimationQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 9237F8581601B7FC00F6BD36 /* SAViewAnimationQueue.m */; };
9237F85C1601B94F00F6BD36 /* SAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9237F85B1601B94F00F6BD36 /* SAViewController.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
9237F8341601B28C00F6BD36 /* SAViewAnimationQueueSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SAViewAnimationQueueSample.app; sourceTree = BUILT_PRODUCTS_DIR; };
9237F8381601B28C00F6BD36 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
9237F83A1601B28C00F6BD36 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
9237F83C1601B28C00F6BD36 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
9237F8401601B28C00F6BD36 /* SAViewAnimationQueueSample-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SAViewAnimationQueueSample-Info.plist"; sourceTree = "<group>"; };
9237F8421601B28C00F6BD36 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9237F8441601B28C00F6BD36 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
9237F8461601B28C00F6BD36 /* SAViewAnimationQueueSample-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SAViewAnimationQueueSample-Prefix.pch"; sourceTree = "<group>"; };
9237F8471601B28C00F6BD36 /* SAAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SAAppDelegate.h; sourceTree = "<group>"; };
9237F8481601B28C00F6BD36 /* SAAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SAAppDelegate.m; sourceTree = "<group>"; };
9237F84A1601B28C00F6BD36 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
9237F84C1601B28C00F6BD36 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
9237F84E1601B28C00F6BD36 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
9237F8571601B7FC00F6BD36 /* SAViewAnimationQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SAViewAnimationQueue.h; sourceTree = "<group>"; };
9237F8581601B7FC00F6BD36 /* SAViewAnimationQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SAViewAnimationQueue.m; sourceTree = "<group>"; };
9237F85A1601B94F00F6BD36 /* SAViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SAViewController.h; sourceTree = "<group>"; };
9237F85B1601B94F00F6BD36 /* SAViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SAViewController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
9237F8311601B28C00F6BD36 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9237F8391601B28C00F6BD36 /* UIKit.framework in Frameworks */,
9237F83B1601B28C00F6BD36 /* Foundation.framework in Frameworks */,
9237F83D1601B28C00F6BD36 /* CoreGraphics.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
9237F8291601B28C00F6BD36 = {
isa = PBXGroup;
children = (
9237F83E1601B28C00F6BD36 /* SAViewAnimationQueueSample */,
9237F8371601B28C00F6BD36 /* Frameworks */,
9237F8351601B28C00F6BD36 /* Products */,
);
sourceTree = "<group>";
};
9237F8351601B28C00F6BD36 /* Products */ = {
isa = PBXGroup;
children = (
9237F8341601B28C00F6BD36 /* SAViewAnimationQueueSample.app */,
);
name = Products;
sourceTree = "<group>";
};
9237F8371601B28C00F6BD36 /* Frameworks */ = {
isa = PBXGroup;
children = (
9237F8381601B28C00F6BD36 /* UIKit.framework */,
9237F83A1601B28C00F6BD36 /* Foundation.framework */,
9237F83C1601B28C00F6BD36 /* CoreGraphics.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
9237F83E1601B28C00F6BD36 /* SAViewAnimationQueueSample */ = {
isa = PBXGroup;
children = (
9237F8471601B28C00F6BD36 /* SAAppDelegate.h */,
9237F8481601B28C00F6BD36 /* SAAppDelegate.m */,
9237F85A1601B94F00F6BD36 /* SAViewController.h */,
9237F85B1601B94F00F6BD36 /* SAViewController.m */,
9237F8571601B7FC00F6BD36 /* SAViewAnimationQueue.h */,
9237F8581601B7FC00F6BD36 /* SAViewAnimationQueue.m */,
9237F83F1601B28C00F6BD36 /* Supporting Files */,
);
path = SAViewAnimationQueueSample;
sourceTree = "<group>";
};
9237F83F1601B28C00F6BD36 /* Supporting Files */ = {
isa = PBXGroup;
children = (
9237F8401601B28C00F6BD36 /* SAViewAnimationQueueSample-Info.plist */,
9237F8411601B28C00F6BD36 /* InfoPlist.strings */,
9237F8441601B28C00F6BD36 /* main.m */,
9237F8461601B28C00F6BD36 /* SAViewAnimationQueueSample-Prefix.pch */,
9237F84A1601B28C00F6BD36 /* Default.png */,
9237F84C1601B28C00F6BD36 /* [email protected] */,
9237F84E1601B28C00F6BD36 /* [email protected] */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
9237F8331601B28C00F6BD36 /* SAViewAnimationQueueSample */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9237F8521601B28C00F6BD36 /* Build configuration list for PBXNativeTarget "SAViewAnimationQueueSample" */;
buildPhases = (
9237F8301601B28C00F6BD36 /* Sources */,
9237F8311601B28C00F6BD36 /* Frameworks */,
9237F8321601B28C00F6BD36 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SAViewAnimationQueueSample;
productName = SAViewAnimationQueueSample;
productReference = 9237F8341601B28C00F6BD36 /* SAViewAnimationQueueSample.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
9237F82B1601B28C00F6BD36 /* Project object */ = {
isa = PBXProject;
attributes = {
CLASSPREFIX = SA;
LastUpgradeCheck = 0450;
ORGANIZATIONNAME = "Yoshihiro Kato";
};
buildConfigurationList = 9237F82E1601B28C00F6BD36 /* Build configuration list for PBXProject "SAViewAnimationQueueSample" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 9237F8291601B28C00F6BD36;
productRefGroup = 9237F8351601B28C00F6BD36 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
9237F8331601B28C00F6BD36 /* SAViewAnimationQueueSample */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
9237F8321601B28C00F6BD36 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9237F8431601B28C00F6BD36 /* InfoPlist.strings in Resources */,
9237F84B1601B28C00F6BD36 /* Default.png in Resources */,
9237F84D1601B28C00F6BD36 /* [email protected] in Resources */,
9237F84F1601B28C00F6BD36 /* [email protected] in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
9237F8301601B28C00F6BD36 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9237F8451601B28C00F6BD36 /* main.m in Sources */,
9237F8491601B28C00F6BD36 /* SAAppDelegate.m in Sources */,
9237F8591601B7FC00F6BD36 /* SAViewAnimationQueue.m in Sources */,
9237F85C1601B94F00F6BD36 /* SAViewController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
9237F8411601B28C00F6BD36 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
9237F8421601B28C00F6BD36 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
9237F8501601B28C00F6BD36 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
SDKROOT = iphoneos;
};
name = Debug;
};
9237F8511601B28C00F6BD36 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
9237F8531601B28C00F6BD36 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SAViewAnimationQueueSample/SAViewAnimationQueueSample-Prefix.pch";
INFOPLIST_FILE = "SAViewAnimationQueueSample/SAViewAnimationQueueSample-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
9237F8541601B28C00F6BD36 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SAViewAnimationQueueSample/SAViewAnimationQueueSample-Prefix.pch";
INFOPLIST_FILE = "SAViewAnimationQueueSample/SAViewAnimationQueueSample-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
9237F82E1601B28C00F6BD36 /* Build configuration list for PBXProject "SAViewAnimationQueueSample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9237F8501601B28C00F6BD36 /* Debug */,
9237F8511601B28C00F6BD36 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
9237F8521601B28C00F6BD36 /* Build configuration list for PBXNativeTarget "SAViewAnimationQueueSample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9237F8531601B28C00F6BD36 /* Debug */,
9237F8541601B28C00F6BD36 /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = 9237F82B1601B28C00F6BD36 /* Project object */;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// SAAppDelegate.h
// SAViewAnimationQueueSample
//
// Created by Yoshihiro Kato on 2012/09/13.
// Copyright (c) 2012年 Yoshihiro Kato. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface SAAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
//
// SAAppDelegate.m
// SAViewAnimationQueueSample
//
// Created by Yoshihiro Kato on 2012/09/13.
// Copyright (c) 2012年 Yoshihiro Kato. All rights reserved.
//

#import "SAAppDelegate.h"
#import "SAViewController.h"

@implementation SAAppDelegate

- (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];

SAViewController* viewController = [[SAViewController alloc] init];
self.window.rootViewController = viewController;

[self.window makeKeyAndVisible];
return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end
Loading

0 comments on commit 62e8999

Please sign in to comment.