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
52
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
66
Intro to Swift and clean coding practices
markawil
0
45
Clean Coding in Swift
markawil
0
200
Life of a Mobile Developer
markawil
1
70
MVVM and Mobile, don't do it cause someone told you
markawil
1
620
SOLID coding in Swift and iOS
markawil
0
250
What's new in Swift 2.0
markawil
0
53
Unit testings in Swift
markawil
0
52
Tools for the iOS Developer
markawil
4
91
Featured
See All Featured
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7.1k
GitHub's CSS Performance
jonrohan
1030
460k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
44
9.4k
A Tale of Four Properties
chriscoyier
157
23k
Building an army of robots
kneath
302
45k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
30
2.1k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
6
220
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
27
1.9k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
3k
A Philosophy of Restraint
colly
203
16k
Optimizing for Happiness
mojombo
376
70k
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