├── Images
└── slide-up-animation.gif
├── SlideUpAnimation
├── Assets.xcassets
│ ├── Contents.json
│ ├── Logout.imageset
│ │ ├── Logout.png
│ │ └── Contents.json
│ ├── Profile.imageset
│ │ ├── Profile.png
│ │ └── Contents.json
│ ├── Favorite.imageset
│ │ ├── Favorite.png
│ │ └── Contents.json
│ ├── Notification.imageset
│ │ ├── Notification.png
│ │ └── Contents.json
│ ├── Change Password.imageset
│ │ ├── Change Password.png
│ │ └── Contents.json
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── CustomTableViewCell.swift
├── Info.plist
├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
├── AppDelegate.swift
└── ViewController.swift
├── README.md
├── .gitignore
└── SlideUpAnimation.xcodeproj
├── project.xcworkspace
└── contents.xcworkspacedata
└── project.pbxproj
/Images/slide-up-animation.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1992Shubham/Slide-Up-Animation/HEAD/Images/slide-up-animation.gif
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Slide-Up-Animation
2 |
3 | Output would be:
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Logout.imageset/Logout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1992Shubham/Slide-Up-Animation/HEAD/SlideUpAnimation/Assets.xcassets/Logout.imageset/Logout.png
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Profile.imageset/Profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1992Shubham/Slide-Up-Animation/HEAD/SlideUpAnimation/Assets.xcassets/Profile.imageset/Profile.png
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Favorite.imageset/Favorite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1992Shubham/Slide-Up-Animation/HEAD/SlideUpAnimation/Assets.xcassets/Favorite.imageset/Favorite.png
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Notification.imageset/Notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1992Shubham/Slide-Up-Animation/HEAD/SlideUpAnimation/Assets.xcassets/Notification.imageset/Notification.png
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Change Password.imageset/Change Password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/1992Shubham/Slide-Up-Animation/HEAD/SlideUpAnimation/Assets.xcassets/Change Password.imageset/Change Password.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | SlideUpAnimation.xcodeproj/project.xcworkspace/xcshareddata
2 | SlideUpAnimation.xcodeproj/project.xcworkspace/xcuserdata
3 | SlideUpAnimation.xcodeproj/xcuserdata/shubhamagarwal.xcuserdatad/xcschemes
4 | SlideUpAnimation.xcodeproj/xcuserdata
5 |
--------------------------------------------------------------------------------
/SlideUpAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Logout.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "Logout.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Profile.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "Profile.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Favorite.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "Favorite.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Notification.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "Notification.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/Change Password.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "Change Password.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/SlideUpAnimation/CustomTableViewCell.swift:
--------------------------------------------------------------------------------
1 | //
2 | // CustomTableViewCell.swift
3 | // SlideUpAnimation
4 | //
5 | // Created by SHUBHAM AGARWAL on 26/02/19.
6 | // Copyright © 2019 SHUBHAM AGARWAL. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class CustomTableViewCell: UITableViewCell {
12 |
13 | lazy var backView: UIView = {
14 | let view = UIView(frame: CGRect(x: 0, y: 0, width: self.frame.width, height: 50))
15 | return view
16 | }()
17 |
18 | lazy var settingImage: UIImageView = {
19 | let imageView = UIImageView(frame: CGRect(x: 15, y: 10, width: 30, height: 30))
20 | imageView.contentMode = .scaleAspectFit
21 | return imageView
22 | }()
23 |
24 | lazy var lbl: UILabel = {
25 | let lbl = UILabel(frame: CGRect(x: 60, y: 10, width: self.frame.width - 80, height: 30))
26 | return lbl
27 | }()
28 |
29 | override func awakeFromNib() {
30 | super.awakeFromNib()
31 | // Initialization code
32 | }
33 |
34 |
35 | override func setSelected(_ selected: Bool, animated: Bool) {
36 | super.setSelected(selected, animated: animated)
37 | addSubview(backView)
38 | backView.addSubview(settingImage)
39 | backView.addSubview(lbl)
40 | // Configure the view for the selected state
41 | }
42 |
43 | }
44 |
--------------------------------------------------------------------------------
/SlideUpAnimation/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 | LSRequiresIPhoneOS
22 |
23 | UILaunchStoryboardName
24 | LaunchScreen
25 | UIMainStoryboardFile
26 | Main
27 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/SlideUpAnimation/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/SlideUpAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "20x20",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "20x20",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "29x29",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "29x29",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "40x40",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "40x40",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "size" : "60x60",
36 | "scale" : "2x"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "size" : "60x60",
41 | "scale" : "3x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "20x20",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "20x20",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "29x29",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "29x29",
61 | "scale" : "2x"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "size" : "40x40",
66 | "scale" : "1x"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "size" : "40x40",
71 | "scale" : "2x"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "size" : "76x76",
76 | "scale" : "1x"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "size" : "76x76",
81 | "scale" : "2x"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "size" : "83.5x83.5",
86 | "scale" : "2x"
87 | },
88 | {
89 | "idiom" : "ios-marketing",
90 | "size" : "1024x1024",
91 | "scale" : "1x"
92 | }
93 | ],
94 | "info" : {
95 | "version" : 1,
96 | "author" : "xcode"
97 | }
98 | }
--------------------------------------------------------------------------------
/SlideUpAnimation/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // SlideUpAnimation
4 | //
5 | // Created by SHUBHAM AGARWAL on 26/02/19.
6 | // Copyright © 2019 SHUBHAM AGARWAL. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 |
17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18 | // Override point for customization after application launch.
19 | return true
20 | }
21 |
22 | func applicationWillResignActive(_ application: UIApplication) {
23 | // 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.
24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
25 | }
26 |
27 | func applicationDidEnterBackground(_ application: UIApplication) {
28 | // 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.
29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
30 | }
31 |
32 | func applicationWillEnterForeground(_ application: UIApplication) {
33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
34 | }
35 |
36 | func applicationDidBecomeActive(_ application: UIApplication) {
37 | // 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.
38 | }
39 |
40 | func applicationWillTerminate(_ application: UIApplication) {
41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
42 | }
43 |
44 |
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/SlideUpAnimation/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // SlideUpAnimation
4 | //
5 | // Created by SHUBHAM AGARWAL on 26/02/19.
6 | // Copyright © 2019 SHUBHAM AGARWAL. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class ViewController: UIViewController {
12 |
13 | var transparentView = UIView()
14 | var tableView = UITableView()
15 |
16 | let height: CGFloat = 250
17 |
18 | var settingArray = ["Profile","Favorite","Notification","Change Password","Logout"]
19 |
20 | override func viewDidLoad() {
21 | super.viewDidLoad()
22 | tableView.isScrollEnabled = true
23 | tableView.delegate = self
24 | tableView.dataSource = self
25 | tableView.register(CustomTableViewCell.self, forCellReuseIdentifier: "Cell")
26 | }
27 |
28 | override func didReceiveMemoryWarning() {
29 | super.didReceiveMemoryWarning()
30 | // Dispose of any resources that can be recreated.
31 | }
32 |
33 | @IBAction func onClickMenu(_ sender: Any) {
34 |
35 | let window = UIApplication.shared.keyWindow
36 | transparentView.backgroundColor = UIColor.black.withAlphaComponent(0.9)
37 | transparentView.frame = self.view.frame
38 | window?.addSubview(transparentView)
39 |
40 | let screenSize = UIScreen.main.bounds.size
41 | tableView.frame = CGRect(x: 0, y: screenSize.height, width: screenSize.width, height: height)
42 | window?.addSubview(tableView)
43 |
44 | let tapGesture = UITapGestureRecognizer(target: self, action: #selector(onClickTransparentView))
45 | transparentView.addGestureRecognizer(tapGesture)
46 |
47 | transparentView.alpha = 0
48 |
49 | UIView.animate(withDuration: 0.5, delay: 0, usingSpringWithDamping: 1.0, initialSpringVelocity: 1.0, options: .curveEaseInOut, animations: {
50 | self.transparentView.alpha = 0.5
51 | self.tableView.frame = CGRect(x: 0, y: screenSize.height - self.height, width: screenSize.width, height: self.height)
52 | }, completion: nil)
53 |
54 | }
55 |
56 | @objc func onClickTransparentView() {
57 | let screenSize = UIScreen.main.bounds.size
58 |
59 | UIView.animate(withDuration: 0.5, delay: 0, usingSpringWithDamping: 1.0, initialSpringVelocity: 1.0, options: .curveEaseInOut, animations: {
60 | self.transparentView.alpha = 0
61 | self.tableView.frame = CGRect(x: 0, y: screenSize.height, width: screenSize.width, height: self.height)
62 | }, completion: nil)
63 | }
64 |
65 | }
66 |
67 | extension ViewController: UITableViewDataSource, UITableViewDelegate {
68 |
69 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
70 | return settingArray.count
71 | }
72 |
73 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
74 | guard let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as? CustomTableViewCell else {fatalError("Unable to deque cell")}
75 | cell.lbl.text = settingArray[indexPath.row]
76 | cell.settingImage.image = UIImage(named: settingArray[indexPath.row])!
77 | return cell
78 | }
79 |
80 | func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
81 | return 50
82 | }
83 |
84 |
85 | }
86 |
87 |
--------------------------------------------------------------------------------
/SlideUpAnimation/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/SlideUpAnimation.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 50;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 0E069B7A2225B6D400BB018C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E069B792225B6D400BB018C /* AppDelegate.swift */; };
11 | 0E069B7C2225B6D400BB018C /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E069B7B2225B6D400BB018C /* ViewController.swift */; };
12 | 0E069B7F2225B6D400BB018C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0E069B7D2225B6D400BB018C /* Main.storyboard */; };
13 | 0E069B812225B6D700BB018C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0E069B802225B6D700BB018C /* Assets.xcassets */; };
14 | 0E069B842225B6D700BB018C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0E069B822225B6D700BB018C /* LaunchScreen.storyboard */; };
15 | 0E069B8C2225BCC400BB018C /* CustomTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E069B8B2225BCC400BB018C /* CustomTableViewCell.swift */; };
16 | /* End PBXBuildFile section */
17 |
18 | /* Begin PBXFileReference section */
19 | 0E069B762225B6D400BB018C /* SlideUpAnimation.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SlideUpAnimation.app; sourceTree = BUILT_PRODUCTS_DIR; };
20 | 0E069B792225B6D400BB018C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
21 | 0E069B7B2225B6D400BB018C /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
22 | 0E069B7E2225B6D400BB018C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
23 | 0E069B802225B6D700BB018C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
24 | 0E069B832225B6D700BB018C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
25 | 0E069B852225B6D700BB018C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
26 | 0E069B8B2225BCC400BB018C /* CustomTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomTableViewCell.swift; sourceTree = ""; };
27 | /* End PBXFileReference section */
28 |
29 | /* Begin PBXFrameworksBuildPhase section */
30 | 0E069B732225B6D400BB018C /* Frameworks */ = {
31 | isa = PBXFrameworksBuildPhase;
32 | buildActionMask = 2147483647;
33 | files = (
34 | );
35 | runOnlyForDeploymentPostprocessing = 0;
36 | };
37 | /* End PBXFrameworksBuildPhase section */
38 |
39 | /* Begin PBXGroup section */
40 | 0E069B6D2225B6D400BB018C = {
41 | isa = PBXGroup;
42 | children = (
43 | 0E069B782225B6D400BB018C /* SlideUpAnimation */,
44 | 0E069B772225B6D400BB018C /* Products */,
45 | );
46 | sourceTree = "";
47 | };
48 | 0E069B772225B6D400BB018C /* Products */ = {
49 | isa = PBXGroup;
50 | children = (
51 | 0E069B762225B6D400BB018C /* SlideUpAnimation.app */,
52 | );
53 | name = Products;
54 | sourceTree = "";
55 | };
56 | 0E069B782225B6D400BB018C /* SlideUpAnimation */ = {
57 | isa = PBXGroup;
58 | children = (
59 | 0E069B792225B6D400BB018C /* AppDelegate.swift */,
60 | 0E069B7B2225B6D400BB018C /* ViewController.swift */,
61 | 0E069B8B2225BCC400BB018C /* CustomTableViewCell.swift */,
62 | 0E069B7D2225B6D400BB018C /* Main.storyboard */,
63 | 0E069B802225B6D700BB018C /* Assets.xcassets */,
64 | 0E069B822225B6D700BB018C /* LaunchScreen.storyboard */,
65 | 0E069B852225B6D700BB018C /* Info.plist */,
66 | );
67 | path = SlideUpAnimation;
68 | sourceTree = "";
69 | };
70 | /* End PBXGroup section */
71 |
72 | /* Begin PBXNativeTarget section */
73 | 0E069B752225B6D400BB018C /* SlideUpAnimation */ = {
74 | isa = PBXNativeTarget;
75 | buildConfigurationList = 0E069B882225B6D700BB018C /* Build configuration list for PBXNativeTarget "SlideUpAnimation" */;
76 | buildPhases = (
77 | 0E069B722225B6D400BB018C /* Sources */,
78 | 0E069B732225B6D400BB018C /* Frameworks */,
79 | 0E069B742225B6D400BB018C /* Resources */,
80 | );
81 | buildRules = (
82 | );
83 | dependencies = (
84 | );
85 | name = SlideUpAnimation;
86 | productName = SlideUpAnimation;
87 | productReference = 0E069B762225B6D400BB018C /* SlideUpAnimation.app */;
88 | productType = "com.apple.product-type.application";
89 | };
90 | /* End PBXNativeTarget section */
91 |
92 | /* Begin PBXProject section */
93 | 0E069B6E2225B6D400BB018C /* Project object */ = {
94 | isa = PBXProject;
95 | attributes = {
96 | LastSwiftUpdateCheck = 0940;
97 | LastUpgradeCheck = 0940;
98 | ORGANIZATIONNAME = "SHUBHAM AGARWAL";
99 | TargetAttributes = {
100 | 0E069B752225B6D400BB018C = {
101 | CreatedOnToolsVersion = 9.4;
102 | };
103 | };
104 | };
105 | buildConfigurationList = 0E069B712225B6D400BB018C /* Build configuration list for PBXProject "SlideUpAnimation" */;
106 | compatibilityVersion = "Xcode 9.3";
107 | developmentRegion = en;
108 | hasScannedForEncodings = 0;
109 | knownRegions = (
110 | en,
111 | Base,
112 | );
113 | mainGroup = 0E069B6D2225B6D400BB018C;
114 | productRefGroup = 0E069B772225B6D400BB018C /* Products */;
115 | projectDirPath = "";
116 | projectRoot = "";
117 | targets = (
118 | 0E069B752225B6D400BB018C /* SlideUpAnimation */,
119 | );
120 | };
121 | /* End PBXProject section */
122 |
123 | /* Begin PBXResourcesBuildPhase section */
124 | 0E069B742225B6D400BB018C /* Resources */ = {
125 | isa = PBXResourcesBuildPhase;
126 | buildActionMask = 2147483647;
127 | files = (
128 | 0E069B842225B6D700BB018C /* LaunchScreen.storyboard in Resources */,
129 | 0E069B812225B6D700BB018C /* Assets.xcassets in Resources */,
130 | 0E069B7F2225B6D400BB018C /* Main.storyboard in Resources */,
131 | );
132 | runOnlyForDeploymentPostprocessing = 0;
133 | };
134 | /* End PBXResourcesBuildPhase section */
135 |
136 | /* Begin PBXSourcesBuildPhase section */
137 | 0E069B722225B6D400BB018C /* Sources */ = {
138 | isa = PBXSourcesBuildPhase;
139 | buildActionMask = 2147483647;
140 | files = (
141 | 0E069B8C2225BCC400BB018C /* CustomTableViewCell.swift in Sources */,
142 | 0E069B7C2225B6D400BB018C /* ViewController.swift in Sources */,
143 | 0E069B7A2225B6D400BB018C /* AppDelegate.swift in Sources */,
144 | );
145 | runOnlyForDeploymentPostprocessing = 0;
146 | };
147 | /* End PBXSourcesBuildPhase section */
148 |
149 | /* Begin PBXVariantGroup section */
150 | 0E069B7D2225B6D400BB018C /* Main.storyboard */ = {
151 | isa = PBXVariantGroup;
152 | children = (
153 | 0E069B7E2225B6D400BB018C /* Base */,
154 | );
155 | name = Main.storyboard;
156 | sourceTree = "";
157 | };
158 | 0E069B822225B6D700BB018C /* LaunchScreen.storyboard */ = {
159 | isa = PBXVariantGroup;
160 | children = (
161 | 0E069B832225B6D700BB018C /* Base */,
162 | );
163 | name = LaunchScreen.storyboard;
164 | sourceTree = "";
165 | };
166 | /* End PBXVariantGroup section */
167 |
168 | /* Begin XCBuildConfiguration section */
169 | 0E069B862225B6D700BB018C /* Debug */ = {
170 | isa = XCBuildConfiguration;
171 | buildSettings = {
172 | ALWAYS_SEARCH_USER_PATHS = NO;
173 | CLANG_ANALYZER_NONNULL = YES;
174 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
175 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
176 | CLANG_CXX_LIBRARY = "libc++";
177 | CLANG_ENABLE_MODULES = YES;
178 | CLANG_ENABLE_OBJC_ARC = YES;
179 | CLANG_ENABLE_OBJC_WEAK = YES;
180 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
181 | CLANG_WARN_BOOL_CONVERSION = YES;
182 | CLANG_WARN_COMMA = YES;
183 | CLANG_WARN_CONSTANT_CONVERSION = YES;
184 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
185 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
186 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
187 | CLANG_WARN_EMPTY_BODY = YES;
188 | CLANG_WARN_ENUM_CONVERSION = YES;
189 | CLANG_WARN_INFINITE_RECURSION = YES;
190 | CLANG_WARN_INT_CONVERSION = YES;
191 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
192 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
193 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
194 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
195 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
196 | CLANG_WARN_STRICT_PROTOTYPES = YES;
197 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
198 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
199 | CLANG_WARN_UNREACHABLE_CODE = YES;
200 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
201 | CODE_SIGN_IDENTITY = "iPhone Developer";
202 | COPY_PHASE_STRIP = NO;
203 | DEBUG_INFORMATION_FORMAT = dwarf;
204 | ENABLE_STRICT_OBJC_MSGSEND = YES;
205 | ENABLE_TESTABILITY = YES;
206 | GCC_C_LANGUAGE_STANDARD = gnu11;
207 | GCC_DYNAMIC_NO_PIC = NO;
208 | GCC_NO_COMMON_BLOCKS = YES;
209 | GCC_OPTIMIZATION_LEVEL = 0;
210 | GCC_PREPROCESSOR_DEFINITIONS = (
211 | "DEBUG=1",
212 | "$(inherited)",
213 | );
214 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
215 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
216 | GCC_WARN_UNDECLARED_SELECTOR = YES;
217 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
218 | GCC_WARN_UNUSED_FUNCTION = YES;
219 | GCC_WARN_UNUSED_VARIABLE = YES;
220 | IPHONEOS_DEPLOYMENT_TARGET = 11.4;
221 | MTL_ENABLE_DEBUG_INFO = YES;
222 | ONLY_ACTIVE_ARCH = YES;
223 | SDKROOT = iphoneos;
224 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
225 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
226 | };
227 | name = Debug;
228 | };
229 | 0E069B872225B6D700BB018C /* Release */ = {
230 | isa = XCBuildConfiguration;
231 | buildSettings = {
232 | ALWAYS_SEARCH_USER_PATHS = NO;
233 | CLANG_ANALYZER_NONNULL = YES;
234 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
235 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
236 | CLANG_CXX_LIBRARY = "libc++";
237 | CLANG_ENABLE_MODULES = YES;
238 | CLANG_ENABLE_OBJC_ARC = YES;
239 | CLANG_ENABLE_OBJC_WEAK = YES;
240 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
241 | CLANG_WARN_BOOL_CONVERSION = YES;
242 | CLANG_WARN_COMMA = YES;
243 | CLANG_WARN_CONSTANT_CONVERSION = YES;
244 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
245 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
246 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
247 | CLANG_WARN_EMPTY_BODY = YES;
248 | CLANG_WARN_ENUM_CONVERSION = YES;
249 | CLANG_WARN_INFINITE_RECURSION = YES;
250 | CLANG_WARN_INT_CONVERSION = YES;
251 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
252 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
253 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
254 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
255 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
256 | CLANG_WARN_STRICT_PROTOTYPES = YES;
257 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
258 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
259 | CLANG_WARN_UNREACHABLE_CODE = YES;
260 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
261 | CODE_SIGN_IDENTITY = "iPhone Developer";
262 | COPY_PHASE_STRIP = NO;
263 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
264 | ENABLE_NS_ASSERTIONS = NO;
265 | ENABLE_STRICT_OBJC_MSGSEND = YES;
266 | GCC_C_LANGUAGE_STANDARD = gnu11;
267 | GCC_NO_COMMON_BLOCKS = YES;
268 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
269 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
270 | GCC_WARN_UNDECLARED_SELECTOR = YES;
271 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
272 | GCC_WARN_UNUSED_FUNCTION = YES;
273 | GCC_WARN_UNUSED_VARIABLE = YES;
274 | IPHONEOS_DEPLOYMENT_TARGET = 11.4;
275 | MTL_ENABLE_DEBUG_INFO = NO;
276 | SDKROOT = iphoneos;
277 | SWIFT_COMPILATION_MODE = wholemodule;
278 | SWIFT_OPTIMIZATION_LEVEL = "-O";
279 | VALIDATE_PRODUCT = YES;
280 | };
281 | name = Release;
282 | };
283 | 0E069B892225B6D700BB018C /* Debug */ = {
284 | isa = XCBuildConfiguration;
285 | buildSettings = {
286 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
287 | CODE_SIGN_STYLE = Automatic;
288 | INFOPLIST_FILE = SlideUpAnimation/Info.plist;
289 | LD_RUNPATH_SEARCH_PATHS = (
290 | "$(inherited)",
291 | "@executable_path/Frameworks",
292 | );
293 | PRODUCT_BUNDLE_IDENTIFIER = LetCreateAnApp.SlideUpAnimation;
294 | PRODUCT_NAME = "$(TARGET_NAME)";
295 | SWIFT_VERSION = 4.0;
296 | TARGETED_DEVICE_FAMILY = "1,2";
297 | };
298 | name = Debug;
299 | };
300 | 0E069B8A2225B6D700BB018C /* Release */ = {
301 | isa = XCBuildConfiguration;
302 | buildSettings = {
303 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
304 | CODE_SIGN_STYLE = Automatic;
305 | INFOPLIST_FILE = SlideUpAnimation/Info.plist;
306 | LD_RUNPATH_SEARCH_PATHS = (
307 | "$(inherited)",
308 | "@executable_path/Frameworks",
309 | );
310 | PRODUCT_BUNDLE_IDENTIFIER = LetCreateAnApp.SlideUpAnimation;
311 | PRODUCT_NAME = "$(TARGET_NAME)";
312 | SWIFT_VERSION = 4.0;
313 | TARGETED_DEVICE_FAMILY = "1,2";
314 | };
315 | name = Release;
316 | };
317 | /* End XCBuildConfiguration section */
318 |
319 | /* Begin XCConfigurationList section */
320 | 0E069B712225B6D400BB018C /* Build configuration list for PBXProject "SlideUpAnimation" */ = {
321 | isa = XCConfigurationList;
322 | buildConfigurations = (
323 | 0E069B862225B6D700BB018C /* Debug */,
324 | 0E069B872225B6D700BB018C /* Release */,
325 | );
326 | defaultConfigurationIsVisible = 0;
327 | defaultConfigurationName = Release;
328 | };
329 | 0E069B882225B6D700BB018C /* Build configuration list for PBXNativeTarget "SlideUpAnimation" */ = {
330 | isa = XCConfigurationList;
331 | buildConfigurations = (
332 | 0E069B892225B6D700BB018C /* Debug */,
333 | 0E069B8A2225B6D700BB018C /* Release */,
334 | );
335 | defaultConfigurationIsVisible = 0;
336 | defaultConfigurationName = Release;
337 | };
338 | /* End XCConfigurationList section */
339 | };
340 | rootObject = 0E069B6E2225B6D400BB018C /* Project object */;
341 | }
342 |
--------------------------------------------------------------------------------