Skip to content

Commit

Permalink
ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
dingjingzhen committed Jul 12, 2017
1 parent 6e35a47 commit 33a0353
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
63 changes: 63 additions & 0 deletions . gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
7 changes: 7 additions & 0 deletions djz.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
186024EF1F1607970044324D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 186024ED1F1607970044324D /* LaunchScreen.storyboard */; };
186024FA1F1607970044324D /* djzTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 186024F91F1607970044324D /* djzTests.m */; };
186025051F1607970044324D /* djzUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 186025041F1607970044324D /* djzUITests.m */; };
186A487D1F160EB200A7D90D /* . gitignore in Resources */ = {isa = PBXBuildFile; fileRef = 186A487C1F160EB200A7D90D /* . gitignore */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -51,6 +52,7 @@
186025001F1607970044324D /* djzUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = djzUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
186025041F1607970044324D /* djzUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = djzUITests.m; sourceTree = "<group>"; };
186025061F1607970044324D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
186A487C1F160EB200A7D90D /* . gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ". gitignore"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -81,6 +83,7 @@
186024D31F1607960044324D = {
isa = PBXGroup;
children = (
186A487C1F160EB200A7D90D /* . gitignore */,
186024DE1F1607970044324D /* djz */,
186024F81F1607970044324D /* djzTests */,
186025031F1607970044324D /* djzUITests */,
Expand Down Expand Up @@ -247,6 +250,7 @@
buildActionMask = 2147483647;
files = (
186024EF1F1607970044324D /* LaunchScreen.storyboard in Resources */,
186A487D1F160EB200A7D90D /* . gitignore in Resources */,
186024EC1F1607970044324D /* Assets.xcassets in Resources */,
186024EA1F1607970044324D /* Main.storyboard in Resources */,
);
Expand Down Expand Up @@ -509,6 +513,7 @@
1860250B1F1607970044324D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1860250C1F1607970044324D /* Build configuration list for PBXNativeTarget "djzTests" */ = {
isa = XCConfigurationList;
Expand All @@ -517,6 +522,7 @@
1860250E1F1607970044324D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1860250F1F1607970044324D /* Build configuration list for PBXNativeTarget "djzUITests" */ = {
isa = XCConfigurationList;
Expand All @@ -525,6 +531,7 @@
186025111F1607970044324D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
Expand Down
1 change: 1 addition & 0 deletions djz/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ - (void)viewDidLoad {
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
//log2
//log4
// Dispose of any resources that can be recreated.
}

Expand Down

0 comments on commit 33a0353

Please sign in to comment.