Skip to content

Commit 0813516

Browse files
committed
Update readme, remove files
Removing all files in .gitignore
1 parent 5d3431f commit 0813516

File tree

12 files changed

+94
-234
lines changed

12 files changed

+94
-234
lines changed

.gitignore

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
2+
# Xcode
3+
#
4+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
5+
6+
## User settings
7+
xcuserdata/
8+
9+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
10+
*.xcscmblueprint
11+
*.xccheckout
12+
13+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
14+
build/
15+
DerivedData/
16+
*.moved-aside
17+
*.pbxuser
18+
!default.pbxuser
19+
*.mode1v3
20+
!default.mode1v3
21+
*.mode2v3
22+
!default.mode2v3
23+
*.perspectivev3
24+
!default.perspectivev3
25+
26+
## Obj-C/Swift specific
27+
*.hmap
28+
29+
## App packaging
30+
*.ipa
31+
*.dSYM.zip
32+
*.dSYM
33+
34+
## Playgrounds
35+
timeline.xctimeline
36+
playground.xcworkspace
37+
38+
# Swift Package Manager
39+
#
40+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
41+
# Packages/
42+
# Package.pins
43+
# Package.resolved
44+
# *.xcodeproj
45+
#
46+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
47+
# hence it is not needed unless you have added a package configuration file to your project
48+
# .swiftpm
49+
50+
.build/
51+
52+
# CocoaPods
53+
#
54+
# We recommend against adding the Pods directory to your .gitignore. However
55+
# you should judge for yourself, the pros and cons are mentioned at:
56+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
57+
#
58+
# Pods/
59+
#
60+
# Add this line if you want to avoid checking in source code from the Xcode workspace
61+
# *.xcworkspace
62+
63+
# Carthage
64+
#
65+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
66+
# Carthage/Checkouts
67+
68+
Carthage/Build/
69+
70+
# Accio dependency management
71+
Dependencies/
72+
.accio/
73+
74+
# fastlane
75+
#
76+
# It is recommended to not store the screenshots in the git repo.
77+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
78+
# For more information about the recommended setup visit:
79+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
80+
81+
fastlane/report.xml
82+
fastlane/Preview.html
83+
fastlane/screenshots/**/*.png
84+
fastlane/test_output
85+
86+
# Code Injection
87+
#
88+
# After new code Injection tools there's a generated folder /iOSInjectionProject
89+
# https://github.com/johnno1962/injectionforxcode
90+
91+
iOSInjectionProject/

Pods/Pods.xcodeproj/xcuserdata/sara.topic.xcuserdatad/xcschemes/Alamofire.xcscheme

-60
This file was deleted.

Pods/Pods.xcodeproj/xcuserdata/sara.topic.xcuserdatad/xcschemes/Pods-QuyzApp.xcscheme

-60
This file was deleted.

Pods/Pods.xcodeproj/xcuserdata/sara.topic.xcuserdatad/xcschemes/xcschememanagement.plist

-25
This file was deleted.

QuyzApp.xcodeproj/project.pbxproj

-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
320954A023596D880015D532 /* DisplayQuestionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3209549F23596D880015D532 /* DisplayQuestionViewController.swift */; };
1313
320954A2235B88600015D532 /* DisplayResultViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 320954A1235B88600015D532 /* DisplayResultViewController.swift */; };
1414
3213D8C02349615C00A6A3FE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3213D8BF2349615C00A6A3FE /* AppDelegate.swift */; };
15-
3213D8C22349615C00A6A3FE /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3213D8C12349615C00A6A3FE /* ViewController.swift */; };
1615
3213D8C52349615C00A6A3FE /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3213D8C32349615C00A6A3FE /* Main.storyboard */; };
1716
3213D8C72349615D00A6A3FE /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3213D8C62349615D00A6A3FE /* Assets.xcassets */; };
1817
3213D8CA2349615D00A6A3FE /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3213D8C82349615D00A6A3FE /* LaunchScreen.storyboard */; };
@@ -27,7 +26,6 @@
2726
320954A1235B88600015D532 /* DisplayResultViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DisplayResultViewController.swift; sourceTree = "<group>"; };
2827
3213D8BC2349615C00A6A3FE /* QuyzApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = QuyzApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
2928
3213D8BF2349615C00A6A3FE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
30-
3213D8C12349615C00A6A3FE /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
3129
3213D8C42349615C00A6A3FE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
3230
3213D8C62349615D00A6A3FE /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
3331
3213D8C92349615D00A6A3FE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
@@ -70,7 +68,6 @@
7068
isa = PBXGroup;
7169
children = (
7270
3213D8BF2349615C00A6A3FE /* AppDelegate.swift */,
73-
3213D8C12349615C00A6A3FE /* ViewController.swift */,
7471
3213D8C32349615C00A6A3FE /* Main.storyboard */,
7572
32095499234A9AEC0015D532 /* QuestionGeneratorViewController.swift */,
7673
3213D8C62349615D00A6A3FE /* Assets.xcassets */,
@@ -198,7 +195,6 @@
198195
buildActionMask = 2147483647;
199196
files = (
200197
3209549A234A9AEC0015D532 /* QuestionGeneratorViewController.swift in Sources */,
201-
3213D8C22349615C00A6A3FE /* ViewController.swift in Sources */,
202198
3213D8C02349615C00A6A3FE /* AppDelegate.swift in Sources */,
203199
320954A023596D880015D532 /* DisplayQuestionViewController.swift in Sources */,
204200
320954A2235B88600015D532 /* DisplayResultViewController.swift in Sources */,

QuyzApp.xcodeproj/xcuserdata/sara.topic.xcuserdatad/xcschemes/xcschememanagement.plist

-14
This file was deleted.

QuyzApp.xcworkspace/xcuserdata/sara.topic.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

-39
This file was deleted.

QuyzApp/DisplayQuestionViewController.swift

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ class DisplayQuestionViewController: UIViewController{
1515

1616
override func viewDidLoad() {
1717
questionLabel.text = quizObject!.question?.removingPercentEncoding
18-
// correctAnswer = Bool(quizObject!.correct_answer!.lowercased())
19-
// quizObject?.correct_answer == "True"
2018
}
2119

2220
func isAnswerCorrect(selectedAnswer: Bool)

QuyzApp/DisplayResultViewController.swift

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class DisplayResultViewController: UIViewController {
77
@IBOutlet weak var imageView: UIImageView!
88
override func viewDidLoad() {
99
imageView.image = UIImage(named: imageName!)
10-
// self.view.isUserInteractionEnabled = true
1110
let swipeDown = UISwipeGestureRecognizer(target: self, action: #selector(self.handleSwipe(_sender:)))
1211
swipeDown.direction = .down
1312
self.view.addGestureRecognizer(swipeDown)

QuyzApp/QuestionGeneratorViewController.swift

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
//
2-
// QuestionGeneratorViewController.swift
3-
// QuyzApp
4-
//
5-
// Created by Sara Topic on 10/6/19.
6-
// Copyright © 2019 Sara Topic. All rights reserved.
7-
//
8-
91
import Foundation
102
import UIKit
113
import Alamofire

QuyzApp/ViewController.swift

-20
This file was deleted.

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# intro-ios-dev
1+
# intro-ios-dev
2+
3+
Slides can be found [here](https://docs.google.com/presentation/d/1INt5FptlKSxTdMdRO3N9rF-kXmjjZ9N_edONxJ79BqA/edit?usp=sharing).

0 commit comments

Comments
 (0)