master 6642733d4d79 cached
11 files
35.3 KB
10.8k tokens
1 requests
Download .txt
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
================================================
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7531" systemVersion="14C109" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
    <dependencies>
        <deployment identifier="iOS"/>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7520"/>
    </dependencies>
    <objects>
        <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
        <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
        <view contentMode="scaleToFill" id="iN0-l3-epB">
            <rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
            <subviews>
                <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="logo.png" translatesAutoresizingMaskIntoConstraints="NO" id="Z8z-PV-Xho">
                    <rect key="frame" x="210" y="210" width="60" height="60"/>
                    <constraints>
                        <constraint firstAttribute="width" constant="60" id="eHu-jc-n44"/>
                        <constraint firstAttribute="height" constant="60" id="hUP-LI-cRM"/>
                    </constraints>
                </imageView>
                <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="  Copyright (c) 2015 Daiki Okumura. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye" userLabel="Copyright (c) 2015 Daiki Okumura. All rights reserved.">
                    <rect key="frame" x="20" y="439" width="441" height="21"/>
                    <fontDescription key="fontDescription" type="system" pointSize="17"/>
                    <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                    <nil key="highlightedColor"/>
                </label>
            </subviews>
            <color key="backgroundColor" red="0.96231955289840698" green="0.80934178829193115" blue="0.17545920610427856" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
            <constraints>
                <constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
                <constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
                <constraint firstAttribute="centerY" secondItem="Z8z-PV-Xho" secondAttribute="centerY" id="NgT-JA-bah"/>
                <constraint firstAttribute="centerX" secondItem="Z8z-PV-Xho" secondAttribute="centerX" id="TSa-gT-Qdm"/>
                <constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
            </constraints>
            <nil key="simulatedStatusBarMetrics"/>
            <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
            <point key="canvasLocation" x="548" y="455"/>
        </view>
    </objects>
    <resources>
        <image name="logo.png" width="1000" height="1000"/>
    </resources>
</document>


================================================
FILE: App Launching like Twitter/Base.lproj/Main.storyboard
================================================
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="7531" systemVersion="14C109" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="zth-CN-rRv">
    <dependencies>
        <deployment identifier="iOS"/>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7520"/>
    </dependencies>
    <scenes>
        <!--HOME-->
        <scene sceneID="SeQ-Ja-cH3">
            <objects>
                <tableViewController id="Oka-iU-YAr" sceneMemberID="viewController">
                    <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="zES-cc-WYy">
                        <rect key="frame" x="0.0" y="0.0" width="600" height="536"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                        <prototypes>
                            <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" id="Hea-wk-mgF">
                                <autoresizingMask key="autoresizingMask"/>
                                <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Hea-wk-mgF" id="fLg-JZ-uQs">
                                    <autoresizingMask key="autoresizingMask"/>
                                </tableViewCellContentView>
                            </tableViewCell>
                        </prototypes>
                        <connections>
                            <outlet property="dataSource" destination="Oka-iU-YAr" id="32B-nO-7Al"/>
                            <outlet property="delegate" destination="Oka-iU-YAr" id="wYt-I7-tHd"/>
                        </connections>
                    </tableView>
                    <navigationItem key="navigationItem" title="HOME" id="nw0-CA-P67">
                        <barButtonItem key="leftBarButtonItem" systemItem="add" id="6rO-mN-eHv">
                            <color key="tintColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                        </barButtonItem>
                        <barButtonItem key="rightBarButtonItem" systemItem="search" id="V9o-Wp-zjv">
                            <color key="tintColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                        </barButtonItem>
                    </navigationItem>
                </tableViewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="ANL-rr-SGQ" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="-2257" y="560"/>
        </scene>
        <!--Navigation Controller-->
        <scene sceneID="q02-Od-aIv">
            <objects>
                <navigationController storyboardIdentifier="navigationController" id="zth-CN-rRv" sceneMemberID="viewController">
                    <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
                    <navigationBar key="navigationBar" contentMode="scaleToFill" translucent="NO" id="jfS-VI-SwV">
                        <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
                        <autoresizingMask key="autoresizingMask"/>
                        <color key="barTintColor" red="0.96231955289840698" green="0.80934184789657593" blue="0.17545926570892334" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                        <textAttributes key="titleTextAttributes">
                            <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                        </textAttributes>
                    </navigationBar>
                    <connections>
                        <segue destination="Oka-iU-YAr" kind="relationship" relationship="rootViewController" id="h89-ZK-Wzu"/>
                    </connections>
                </navigationController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="hWO-JU-QMf" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="-2929" y="560"/>
        </scene>
    </scenes>
</document>


================================================
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
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIdentifier</key>
	<string>co.devlog.$(PRODUCT_NAME:rfc1034identifier)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>LSRequiresIPhoneOS</key>
	<true/>
	<key>UILaunchStoryboardName</key>
	<string>LaunchScreen</string>
	<key>UIMainStoryboardFile</key>
	<string>Main</string>
	<key>UIRequiredDeviceCapabilities</key>
	<array>
		<string>armv7</string>
	</array>
	<key>UIStatusBarStyle</key>
	<string>UIStatusBarStyleLightContent</string>
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>UIViewControllerBasedStatusBarAppearance</key>
	<false/>
</dict>
</plist>


================================================
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 = "<group>"; };
		4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
		4F0C3D3E1AFCE09300030C8F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
		4F0C3D411AFCE09300030C8F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
		4F0C3D431AFCE09300030C8F /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
		4F0C3D461AFCE09300030C8F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
		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 = "<group>"; };
		4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = App_Launching_like_TwitterTests.swift; sourceTree = "<group>"; };
		4F0C3D5C1AFCE53900030C8F /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
/* 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 = "<group>";
		};
		4F0C3D381AFCE09300030C8F /* Products */ = {
			isa = PBXGroup;
			children = (
				4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */,
				4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		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 = "<group>";
		};
		4F0C3D3A1AFCE09300030C8F /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				4F0C3D3B1AFCE09300030C8F /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		4F0C3D4F1AFCE09300030C8F /* App Launching like TwitterTests */ = {
			isa = PBXGroup;
			children = (
				4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */,
				4F0C3D501AFCE09300030C8F /* Supporting Files */,
			);
			path = "App Launching like TwitterTests";
			sourceTree = "<group>";
		};
		4F0C3D501AFCE09300030C8F /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				4F0C3D511AFCE09300030C8F /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
/* 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 = "<group>";
		};
		4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */ = {
			isa = PBXVariantGroup;
			children = (
				4F0C3D461AFCE09300030C8F /* Base */,
			);
			name = LaunchScreen.xib;
			sourceTree = "<group>";
		};
/* 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
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIdentifier</key>
	<string>co.devlog.$(PRODUCT_NAME:rfc1034identifier)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
</dict>
</plist>


================================================
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!

![DEMO](./animation.gif)

## Licence
This software is released under the MIT License, see LICENSE.txt.
Download .txt
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
Condensed preview — 11 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (40K chars).
[
  {
    "path": "App Launching like Twitter/AppDelegate.swift",
    "chars": 5879,
    "preview": "//\n//  AppDelegate.swift\n//  App Launching like Twitter\n//\n//  Created by Daiki Okumura on 2015/05/08.\n//  Copyright (c)"
  },
  {
    "path": "App Launching like Twitter/Base.lproj/LaunchScreen.xib",
    "chars": 3558,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" versi"
  },
  {
    "path": "App Launching like Twitter/Base.lproj/Main.storyboard",
    "chars": 4615,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "App Launching like Twitter/Images.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 585,
    "preview": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\""
  },
  {
    "path": "App Launching like Twitter/Info.plist",
    "chars": 1359,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "App Launching like Twitter/ViewController.swift",
    "chars": 531,
    "preview": "//\n//  ViewController.swift\n//  App Launching like Twitter\n//\n//  Created by Daiki Okumura on 2015/05/08.\n//  Copyright "
  },
  {
    "path": "App Launching like Twitter.xcodeproj/project.pbxproj",
    "chars": 16645,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
  },
  {
    "path": "App Launching like TwitterTests/App_Launching_like_TwitterTests.swift",
    "chars": 964,
    "preview": "//\n//  App_Launching_like_TwitterTests.swift\n//  App Launching like TwitterTests\n//\n//  Created by Daiki Okumura on 2015"
  },
  {
    "path": "App Launching like TwitterTests/Info.plist",
    "chars": 748,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "LICENSE.txt",
    "chars": 1079,
    "preview": "The MIT License (MIT)\n\nCopyright (c) 2015 Daiki Okumura\n\nPermission is hereby granted, free of charge, to any person obt"
  },
  {
    "path": "README.md",
    "chars": 172,
    "preview": "# App Launching like Twitter\nstartup animation like Twitter iOS app!\n\n![DEMO](./animation.gif)\n\n## Licence\nThis software"
  }
]

About this extraction

This page contains the full source code of the okmr-d/App-Launching-like-Twitter GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 11 files (35.3 KB), approximately 10.8k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!