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
75
Intro to Swift and clean coding practices
markawil
0
54
Clean Coding in Swift
markawil
0
210
Life of a Mobile Developer
markawil
1
75
MVVM and Mobile, don't do it cause someone told you
markawil
1
700
SOLID coding in Swift and iOS
markawil
0
260
What's new in Swift 2.0
markawil
0
56
Unit testings in Swift
markawil
0
57
Tools for the iOS Developer
markawil
4
94
Featured
See All Featured
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.6k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
61k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
520
The Cult of Friendly URLs
andyhume
79
6.6k
Done Done
chrislema
185
16k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
How STYLIGHT went responsive
nonsquared
100
5.8k
Gamification - CAS2011
davidbonilla
81
5.4k
Site-Speed That Sticks
csswizardry
10
810
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
810
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
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