Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 136 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
# Created by https://www.gitignore.io/api/swift,objective-c
### https://raw.github.com/github/gitignore/f2bd62d680e2c17027525caf5fd67aa1b3e8ae03/Global/macOS.gitignore

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


### https://raw.github.com/github/gitignore/f2bd62d680e2c17027525caf5fd67aa1b3e8ae03/Global/Xcode.gitignore

### Swift ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
Expand All @@ -22,11 +51,14 @@ xcuserdata/

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

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

## Playgrounds
timeline.xctimeline
Expand All @@ -36,6 +68,8 @@ playground.xcworkspace
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
.build/

# CocoaPods
Expand All @@ -44,7 +78,10 @@ playground.xcworkspace
# 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/
# Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
#
Expand All @@ -55,12 +92,104 @@ Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# 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://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
# https://docs.fastlane.tools/best-practices/source-control/#source-control

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

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

iOSInjectionProject/



### https://raw.github.com/github/gitignore/f2bd62d680e2c17027525caf5fd67aa1b3e8ae03/Swift.gitignore

# 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

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
.build/

# 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/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# 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/**/*.png
fastlane/test_output

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

iOSInjectionProject/


Expand Down
12 changes: 12 additions & 0 deletions Demo/Demo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
29F9EA3B1D42095400A9E9BC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 29F9EA3A1D42095400A9E9BC /* Assets.xcassets */; };
29F9EA3E1D42095400A9E9BC /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29F9EA3C1D42095400A9E9BC /* LaunchScreen.storyboard */; };
29F9EA6F1D42161500A9E9BC /* ScrollingFollowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F9EA6E1D42161400A9E9BC /* ScrollingFollowView.swift */; };
7E29FCE621994061004CF035 /* ScrollingFollowView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E29FCE521994061004CF035 /* ScrollingFollowView.framework */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -24,13 +25,15 @@
29F9EA3D1D42095400A9E9BC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
29F9EA3F1D42095400A9E9BC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
29F9EA6E1D42161400A9E9BC /* ScrollingFollowView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ScrollingFollowView.swift; path = ../../ScrollingFollowView/ScrollingFollowView.swift; sourceTree = "<group>"; };
7E29FCE521994061004CF035 /* ScrollingFollowView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ScrollingFollowView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
29F9EA2D1D42095400A9E9BC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7E29FCE621994061004CF035 /* ScrollingFollowView.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -42,6 +45,7 @@
children = (
29F9EA321D42095400A9E9BC /* Demo */,
29F9EA311D42095400A9E9BC /* Products */,
7E29FCE421994061004CF035 /* Frameworks */,
);
sourceTree = "<group>";
};
Expand All @@ -67,6 +71,14 @@
path = Demo;
sourceTree = "<group>";
};
7E29FCE421994061004CF035 /* Frameworks */ = {
isa = PBXGroup;
children = (
7E29FCE521994061004CF035 /* ScrollingFollowView.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down
55 changes: 0 additions & 55 deletions ScrollingFollowView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,8 @@
291F7BCB1D40E7C90024374A /* ScrollingFollowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 291F7BCA1D40E7C90024374A /* ScrollingFollowView.swift */; };
29F9EA1B1D4208CF00A9E9BC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F9EA121D4208CF00A9E9BC /* ViewController.swift */; };
29F9EA1E1D4208CF00A9E9BC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F9EA181D4208CF00A9E9BC /* AppDelegate.swift */; };
29F9EA1F1D4208CF00A9E9BC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 29F9EA191D4208CF00A9E9BC /* Assets.xcassets */; };
29F9EA201D4208CF00A9E9BC /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 29F9EA1A1D4208CF00A9E9BC /* Info.plist */; };
29F9EA251D4208DB00A9E9BC /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29F9EA211D4208DB00A9E9BC /* LaunchScreen.storyboard */; };
29F9EA261D4208DB00A9E9BC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29F9EA231D4208DB00A9E9BC /* Main.storyboard */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
299E0B201D8FC28B001C5B2C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29F9EA461D420A0B00A9E9BC /* Demo.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 29F9EA301D42095400A9E9BC;
remoteInfo = Demo;
};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
291F7B5A1D40E6230024374A /* ScrollingFollowView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ScrollingFollowView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
291F7B5D1D40E6230024374A /* ScrollingFollowView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScrollingFollowView.h; sourceTree = "<group>"; };
Expand All @@ -38,7 +24,6 @@
29F9EA1A1D4208CF00A9E9BC /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
29F9EA221D4208DB00A9E9BC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
29F9EA241D4208DB00A9E9BC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
29F9EA461D420A0B00A9E9BC /* Demo.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Demo.xcodeproj; path = Demo/Demo.xcodeproj; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -56,7 +41,6 @@
isa = PBXGroup;
children = (
291F7BB11D40E7740024374A /* Demo */,
29F9EA461D420A0B00A9E9BC /* Demo.xcodeproj */,
291F7B5C1D40E6230024374A /* ScrollingFollowView */,
291F7B5B1D40E6230024374A /* Products */,
);
Expand Down Expand Up @@ -101,14 +85,6 @@
path = Demo;
sourceTree = "<group>";
};
299E0B1D1D8FC286001C5B2C /* Products */ = {
isa = PBXGroup;
children = (
299E0B211D8FC28B001C5B2C /* Demo.app */,
);
name = Products;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand All @@ -130,7 +106,6 @@
291F7B551D40E6230024374A /* Sources */,
291F7B561D40E6230024374A /* Frameworks */,
291F7B571D40E6230024374A /* Headers */,
291F7B581D40E6230024374A /* Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -167,43 +142,13 @@
mainGroup = 291F7B501D40E6230024374A;
productRefGroup = 291F7B5B1D40E6230024374A /* Products */;
projectDirPath = "";
projectReferences = (
{
ProductGroup = 299E0B1D1D8FC286001C5B2C /* Products */;
ProjectRef = 29F9EA461D420A0B00A9E9BC /* Demo.xcodeproj */;
},
);
projectRoot = "";
targets = (
291F7B591D40E6230024374A /* ScrollingFollowView */,
);
};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
299E0B211D8FC28B001C5B2C /* Demo.app */ = {
isa = PBXReferenceProxy;
fileType = wrapper.application;
path = Demo.app;
remoteRef = 299E0B201D8FC28B001C5B2C /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */

/* Begin PBXResourcesBuildPhase section */
291F7B581D40E6230024374A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
29F9EA251D4208DB00A9E9BC /* LaunchScreen.storyboard in Resources */,
29F9EA201D4208CF00A9E9BC /* Info.plist in Resources */,
29F9EA1F1D4208CF00A9E9BC /* Assets.xcassets in Resources */,
29F9EA261D4208DB00A9E9BC /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
291F7B551D40E6230024374A /* Sources */ = {
isa = PBXSourcesBuildPhase;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?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/>
</plist>
10 changes: 10 additions & 0 deletions ScrollingFollowView.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?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/>
</plist>