Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
iOS_Dev_Workshop_TechStreet.pdf
Search
Mark Wilkinson
November 20, 2013
0
55
iOS_Dev_Workshop_TechStreet.pdf
Mark Wilkinson
November 20, 2013
Tweet
Share
More Decks by Mark Wilkinson
See All by Mark Wilkinson
Updated presentation for the Houston iPhone Dev User Group
markawil
0
78
Intro to Swift and clean coding practices
markawil
0
57
Clean Coding in Swift
markawil
0
230
Life of a Mobile Developer
markawil
1
77
MVVM and Mobile, don't do it cause someone told you
markawil
1
720
SOLID coding in Swift and iOS
markawil
0
260
What's new in Swift 2.0
markawil
0
59
Unit testings in Swift
markawil
0
60
Tools for the iOS Developer
markawil
4
97
Featured
See All Featured
Context Engineering - Making Every Token Count
addyosmani
9
410
It's Worth the Effort
3n
187
29k
What's in a price? How to price your products and services
michaelherold
246
12k
4 Signs Your Business is Dying
shpigford
186
22k
A designer walks into a library…
pauljervisheath
210
24k
How to Ace a Technical Interview
jacobian
280
24k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.7k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
Documentation Writing (for coders)
carmenintech
76
5.1k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.8k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.8k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Transcript
iPhone Dev workshop step-by-step Wednesday, November 20, 13
Wednesday, November 20, 13
Me Wednesday, November 20, 13
Me Mark Wilkinson Wednesday, November 20, 13
Me Mark Wilkinson UH grad in Comp. Eng. Wednesday, November
20, 13
Me Mark Wilkinson UH grad in Comp. Eng. Former DotNetter,
now full- time mobile developer at ChaiOne. Wednesday, November 20, 13
Me Mark Wilkinson UH grad in Comp. Eng. Former DotNetter,
now full- time mobile developer at ChaiOne. Head of the C#UG for the last 3 years. Wednesday, November 20, 13
create a new Xcode project, single view app Wednesday, November
20, 13
remove the initial View Controller, add Nav- Contronller in the
Main.storyboard Wednesday, November 20, 13
Wire-up the Root ViewController • Set the Class of the
Root VC to be your TSViewController • Change base class of TSViewController to UITableViewController Wednesday, November 20, 13
add UITableView essential methods Wednesday, November 20, 13
set edit and add buttons on NavBar Wednesday, November 20,
13
add your model objects array, update the tableView methods Wednesday,
November 20, 13
Setup the AlertViews to enter Gift information Wednesday, November 20,
13
lets do some refactoring Wednesday, November 20, 13
Where’s the bug? Wednesday, November 20, 13
Check if they chose OK or Cancel Wednesday, November 20,
13
Create and save your new gift to the collection Wednesday,
November 20, 13
Reload the tableView to show the new gift Wednesday, November
20, 13
2 more bugs, why did the tableView not show it
added? then a crash, what happened here? Wednesday, November 20, 13
Add ability to delete gifts Wednesday, November 20, 13
Hmm...closing the app loses all your gifts, you need to
persist Wednesday, November 20, 13
awesome, not read them back each app start Wednesday, November
20, 13
don’t forget to delete gifts Wednesday, November 20, 13
Onto the drill-down, add a new ViewController, add a WebView
control+click the prototype cell, then drag onto the added View Controller, choose ‘Push’ segue Wednesday, November 20, 13
Create the backing ViewController class for this details View Controller
Wednesday, November 20, 13
Wire-up the storyboard view to this view-controller, wire up the
UIWebView to the interface Wednesday, November 20, 13
name the segue that you just created from the tableViewCell
to the DetailsViewController set identifier of the prototype cell to “giftCell” Wednesday, November 20, 13
change the cellForRowAtIndexPathMethod create the prepareForSegue method, set the url
path for the details ViewController Wednesday, November 20, 13
load the URL in the detailsViewController Wednesday, November 20, 13
Bonus, refactor and NSCoding Wednesday, November 20, 13
Move all the saving/persisting logic of gifts out of the
main ViewController Wednesday, November 20, 13
NSCoder and NSKeyedArchiver Wednesday, November 20, 13
Now use NSKeyedArchiver Wednesday, November 20, 13
Resources • developer.apple.com • objc.io • nsscreencast.com • ChaiOne if
you want to do this for a living Wednesday, November 20, 13