Repository: okmr-d/App-Launching-like-Twitter
Branch: master
Commit: 6642733d4d79
Files: 11
Total size: 35.3 KB
Directory structure:
gitextract_ls1a8w4u/
├── App Launching like Twitter/
│ ├── AppDelegate.swift
│ ├── Base.lproj/
│ │ ├── LaunchScreen.xib
│ │ └── Main.storyboard
│ ├── Images.xcassets/
│ │ └── AppIcon.appiconset/
│ │ └── Contents.json
│ ├── Info.plist
│ └── ViewController.swift
├── App Launching like Twitter.xcodeproj/
│ └── project.pbxproj
├── App Launching like TwitterTests/
│ ├── App_Launching_like_TwitterTests.swift
│ └── Info.plist
├── LICENSE.txt
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: App Launching like Twitter/AppDelegate.swift
================================================
//
// AppDelegate.swift
// App Launching like Twitter
//
// Created by Daiki Okumura on 2015/05/08.
// Copyright (c) 2015 Daiki Okumura. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
self.window!.backgroundColor = UIColor(red: 241/255, green: 196/255, blue: 15/255, alpha: 1)
self.window!.makeKeyAndVisible()
// rootViewController from StoryBoard
let mainStoryboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
var navigationController = mainStoryboard.instantiateViewControllerWithIdentifier("navigationController") as! UIViewController
self.window!.rootViewController = navigationController
// logo mask
navigationController.view.layer.mask = CALayer()
navigationController.view.layer.mask.contents = UIImage(named: "logo.png")!.CGImage
navigationController.view.layer.mask.bounds = CGRect(x: 0, y: 0, width: 60, height: 60)
navigationController.view.layer.mask.anchorPoint = CGPoint(x: 0.5, y: 0.5)
navigationController.view.layer.mask.position = CGPoint(x: navigationController.view.frame.width / 2, y: navigationController.view.frame.height / 2)
// logo mask background view
var maskBgView = UIView(frame: navigationController.view.frame)
maskBgView.backgroundColor = UIColor.whiteColor()
navigationController.view.addSubview(maskBgView)
navigationController.view.bringSubviewToFront(maskBgView)
// logo mask animation
let transformAnimation = CAKeyframeAnimation(keyPath: "bounds")
transformAnimation.delegate = self
transformAnimation.duration = 1
transformAnimation.beginTime = CACurrentMediaTime() + 1 //add delay of 1 second
let initalBounds = NSValue(CGRect: navigationController.view.layer.mask.bounds)
let secondBounds = NSValue(CGRect: CGRect(x: 0, y: 0, width: 50, height: 50))
let finalBounds = NSValue(CGRect: CGRect(x: 0, y: 0, width: 2000, height: 2000))
transformAnimation.values = [initalBounds, secondBounds, finalBounds]
transformAnimation.keyTimes = [0, 0.5, 1]
transformAnimation.timingFunctions = [CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut), CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut)]
transformAnimation.removedOnCompletion = false
transformAnimation.fillMode = kCAFillModeForwards
navigationController.view.layer.mask.addAnimation(transformAnimation, forKey: "maskAnimation")
// logo mask background view animation
UIView.animateWithDuration(0.1,
delay: 1.35,
options: UIViewAnimationOptions.CurveEaseIn,
animations: {
maskBgView.alpha = 0.0
},
completion: { finished in
maskBgView.removeFromSuperview()
})
// root view animation
UIView.animateWithDuration(0.25,
delay: 1.3,
options: UIViewAnimationOptions.TransitionNone,
animations: {
self.window!.rootViewController!.view.transform = CGAffineTransformMakeScale(1.05, 1.05)
},
completion: { finished in
UIView.animateWithDuration(0.3,
delay: 0.0,
options: UIViewAnimationOptions.CurveEaseInOut,
animations: {
self.window!.rootViewController!.view.transform = CGAffineTransformIdentity
},
completion: nil
)
})
return true
}
func applicationWillResignActive(application: UIApplication) {
// 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.
}
func applicationDidEnterBackground(application: UIApplication) {
// 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.
}
func applicationWillEnterForeground(application: UIApplication) {
// 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.
}
func applicationDidBecomeActive(application: UIApplication) {
// 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.
}
func applicationWillTerminate(application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
override func animationDidStop(anim: CAAnimation!, finished flag: Bool) {
// remove mask when animation completes
self.window!.rootViewController!.view.layer.mask = nil
}
}
================================================
FILE: App Launching like Twitter/Base.lproj/LaunchScreen.xib
================================================
================================================
FILE: App Launching like Twitter/Base.lproj/Main.storyboard
================================================
================================================
FILE: App Launching like Twitter/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
"images" : [
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: App Launching like Twitter/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
co.devlog.$(PRODUCT_NAME:rfc1034identifier)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
APPL
CFBundleShortVersionString
1.0
CFBundleSignature
????
CFBundleVersion
1
LSRequiresIPhoneOS
UILaunchStoryboardName
LaunchScreen
UIMainStoryboardFile
Main
UIRequiredDeviceCapabilities
armv7
UIStatusBarStyle
UIStatusBarStyleLightContent
UISupportedInterfaceOrientations
UIInterfaceOrientationPortrait
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
UIViewControllerBasedStatusBarAppearance
================================================
FILE: App Launching like Twitter/ViewController.swift
================================================
//
// ViewController.swift
// App Launching like Twitter
//
// Created by Daiki Okumura on 2015/05/08.
// Copyright (c) 2015 Daiki Okumura. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
================================================
FILE: App Launching like Twitter.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
4F0C3D3D1AFCE09300030C8F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */; };
4F0C3D3F1AFCE09300030C8F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0C3D3E1AFCE09300030C8F /* ViewController.swift */; };
4F0C3D421AFCE09300030C8F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D401AFCE09300030C8F /* Main.storyboard */; };
4F0C3D441AFCE09300030C8F /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D431AFCE09300030C8F /* Images.xcassets */; };
4F0C3D471AFCE09300030C8F /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */; };
4F0C3D531AFCE09300030C8F /* App_Launching_like_TwitterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */; };
4F0C3D5E1AFCE53900030C8F /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D5C1AFCE53900030C8F /* logo.png */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
4F0C3D4D1AFCE09300030C8F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4F0C3D2F1AFCE09300030C8F /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4F0C3D361AFCE09300030C8F;
remoteInfo = "App Launching like Twitter";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "App Launching like Twitter.app"; sourceTree = BUILT_PRODUCTS_DIR; };
4F0C3D3B1AFCE09300030C8F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
4F0C3D3E1AFCE09300030C8F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
4F0C3D411AFCE09300030C8F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
4F0C3D431AFCE09300030C8F /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
4F0C3D461AFCE09300030C8F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "App Launching like TwitterTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
4F0C3D511AFCE09300030C8F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = App_Launching_like_TwitterTests.swift; sourceTree = ""; };
4F0C3D5C1AFCE53900030C8F /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
4F0C3D341AFCE09300030C8F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
4F0C3D491AFCE09300030C8F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
4F0C3D2E1AFCE09300030C8F = {
isa = PBXGroup;
children = (
4F0C3D391AFCE09300030C8F /* App Launching like Twitter */,
4F0C3D4F1AFCE09300030C8F /* App Launching like TwitterTests */,
4F0C3D381AFCE09300030C8F /* Products */,
);
sourceTree = "";
};
4F0C3D381AFCE09300030C8F /* Products */ = {
isa = PBXGroup;
children = (
4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */,
4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */,
);
name = Products;
sourceTree = "";
};
4F0C3D391AFCE09300030C8F /* App Launching like Twitter */ = {
isa = PBXGroup;
children = (
4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */,
4F0C3D3E1AFCE09300030C8F /* ViewController.swift */,
4F0C3D5C1AFCE53900030C8F /* logo.png */,
4F0C3D401AFCE09300030C8F /* Main.storyboard */,
4F0C3D431AFCE09300030C8F /* Images.xcassets */,
4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */,
4F0C3D3A1AFCE09300030C8F /* Supporting Files */,
);
path = "App Launching like Twitter";
sourceTree = "";
};
4F0C3D3A1AFCE09300030C8F /* Supporting Files */ = {
isa = PBXGroup;
children = (
4F0C3D3B1AFCE09300030C8F /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "";
};
4F0C3D4F1AFCE09300030C8F /* App Launching like TwitterTests */ = {
isa = PBXGroup;
children = (
4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */,
4F0C3D501AFCE09300030C8F /* Supporting Files */,
);
path = "App Launching like TwitterTests";
sourceTree = "";
};
4F0C3D501AFCE09300030C8F /* Supporting Files */ = {
isa = PBXGroup;
children = (
4F0C3D511AFCE09300030C8F /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
4F0C3D361AFCE09300030C8F /* App Launching like Twitter */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4F0C3D561AFCE09300030C8F /* Build configuration list for PBXNativeTarget "App Launching like Twitter" */;
buildPhases = (
4F0C3D331AFCE09300030C8F /* Sources */,
4F0C3D341AFCE09300030C8F /* Frameworks */,
4F0C3D351AFCE09300030C8F /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "App Launching like Twitter";
productName = "App Launching like Twitter";
productReference = 4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */;
productType = "com.apple.product-type.application";
};
4F0C3D4B1AFCE09300030C8F /* App Launching like TwitterTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4F0C3D591AFCE09300030C8F /* Build configuration list for PBXNativeTarget "App Launching like TwitterTests" */;
buildPhases = (
4F0C3D481AFCE09300030C8F /* Sources */,
4F0C3D491AFCE09300030C8F /* Frameworks */,
4F0C3D4A1AFCE09300030C8F /* Resources */,
);
buildRules = (
);
dependencies = (
4F0C3D4E1AFCE09300030C8F /* PBXTargetDependency */,
);
name = "App Launching like TwitterTests";
productName = "App Launching like TwitterTests";
productReference = 4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
4F0C3D2F1AFCE09300030C8F /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0630;
ORGANIZATIONNAME = "Daiki Okumura";
TargetAttributes = {
4F0C3D361AFCE09300030C8F = {
CreatedOnToolsVersion = 6.3;
};
4F0C3D4B1AFCE09300030C8F = {
CreatedOnToolsVersion = 6.3;
TestTargetID = 4F0C3D361AFCE09300030C8F;
};
};
};
buildConfigurationList = 4F0C3D321AFCE09300030C8F /* Build configuration list for PBXProject "App Launching like Twitter" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 4F0C3D2E1AFCE09300030C8F;
productRefGroup = 4F0C3D381AFCE09300030C8F /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
4F0C3D361AFCE09300030C8F /* App Launching like Twitter */,
4F0C3D4B1AFCE09300030C8F /* App Launching like TwitterTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
4F0C3D351AFCE09300030C8F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F0C3D5E1AFCE53900030C8F /* logo.png in Resources */,
4F0C3D421AFCE09300030C8F /* Main.storyboard in Resources */,
4F0C3D471AFCE09300030C8F /* LaunchScreen.xib in Resources */,
4F0C3D441AFCE09300030C8F /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4F0C3D4A1AFCE09300030C8F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
4F0C3D331AFCE09300030C8F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F0C3D3F1AFCE09300030C8F /* ViewController.swift in Sources */,
4F0C3D3D1AFCE09300030C8F /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4F0C3D481AFCE09300030C8F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F0C3D531AFCE09300030C8F /* App_Launching_like_TwitterTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
4F0C3D4E1AFCE09300030C8F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 4F0C3D361AFCE09300030C8F /* App Launching like Twitter */;
targetProxy = 4F0C3D4D1AFCE09300030C8F /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
4F0C3D401AFCE09300030C8F /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
4F0C3D411AFCE09300030C8F /* Base */,
);
name = Main.storyboard;
sourceTree = "";
};
4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
4F0C3D461AFCE09300030C8F /* Base */,
);
name = LaunchScreen.xib;
sourceTree = "";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
4F0C3D541AFCE09300030C8F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
4F0C3D551AFCE09300030C8F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
4F0C3D571AFCE09300030C8F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = "App Launching like Twitter/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
4F0C3D581AFCE09300030C8F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = "App Launching like Twitter/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
4F0C3D5A1AFCE09300030C8F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = "App Launching like TwitterTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/App Launching like Twitter.app/App Launching like Twitter";
};
name = Debug;
};
4F0C3D5B1AFCE09300030C8F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
INFOPLIST_FILE = "App Launching like TwitterTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/App Launching like Twitter.app/App Launching like Twitter";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
4F0C3D321AFCE09300030C8F /* Build configuration list for PBXProject "App Launching like Twitter" */ = {
isa = XCConfigurationList;
buildConfigurations = (
4F0C3D541AFCE09300030C8F /* Debug */,
4F0C3D551AFCE09300030C8F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4F0C3D561AFCE09300030C8F /* Build configuration list for PBXNativeTarget "App Launching like Twitter" */ = {
isa = XCConfigurationList;
buildConfigurations = (
4F0C3D571AFCE09300030C8F /* Debug */,
4F0C3D581AFCE09300030C8F /* Release */,
);
defaultConfigurationIsVisible = 0;
};
4F0C3D591AFCE09300030C8F /* Build configuration list for PBXNativeTarget "App Launching like TwitterTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
4F0C3D5A1AFCE09300030C8F /* Debug */,
4F0C3D5B1AFCE09300030C8F /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = 4F0C3D2F1AFCE09300030C8F /* Project object */;
}
================================================
FILE: App Launching like TwitterTests/App_Launching_like_TwitterTests.swift
================================================
//
// App_Launching_like_TwitterTests.swift
// App Launching like TwitterTests
//
// Created by Daiki Okumura on 2015/05/08.
// Copyright (c) 2015 Daiki Okumura. All rights reserved.
//
import UIKit
import XCTest
class App_Launching_like_TwitterTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
XCTAssert(true, "Pass")
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measureBlock() {
// Put the code you want to measure the time of here.
}
}
}
================================================
FILE: App Launching like TwitterTests/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
co.devlog.$(PRODUCT_NAME:rfc1034identifier)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
BNDL
CFBundleShortVersionString
1.0
CFBundleSignature
????
CFBundleVersion
1
================================================
FILE: LICENSE.txt
================================================
The MIT License (MIT)
Copyright (c) 2015 Daiki Okumura
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# App Launching like Twitter
startup animation like Twitter iOS app!

## Licence
This software is released under the MIT License, see LICENSE.txt.