SlideShare a Scribd company logo
iPhone Development
    Connecting to the cloud
Ninth Division
real legit growing apple platforms development
              company in omaha, ne
           www.ninthdivision.com
             @ninthdivision

                Andy Peters
                @andypeters
Midwest Mobile
          Developers
    connecting all the mobile developers in the region
           (Nebraska, Iowa, Kansas, Missouri)


http://groups.google.com/group/midwest-mobile-developers
Getting started with
iPhone Development
Getting started with
iPhone Development
Hdc09   I Phone Dev Connecting To Web
Hdc09   I Phone Dev Connecting To Web
flickr: kmulcahy
flickr: kmulcahy
Hdc09   I Phone Dev Connecting To Web
iPhone   The Cloud
Why?


       flickr: Waldo#4
Hdc09   I Phone Dev Connecting To Web
30 Million

iPhone’s Sold as of Sept. 2009
Hdc09   I Phone Dev Connecting To Web
20 Million

iPod Touches Sold as of Sept. 2009
User experience.
Hdc09   I Phone Dev Connecting To Web
Offline usage.
Hdc09   I Phone Dev Connecting To Web
Hdc09   I Phone Dev Connecting To Web
Unreliable Connectivity.
Hdc09   I Phone Dev Connecting To Web
Hdc09   I Phone Dev Connecting To Web
Hdc09   I Phone Dev Connecting To Web
Social networks.
Hdc09   I Phone Dev Connecting To Web
More devices...
More devices...
More devices...
More devices...
iPhone users use the
hell out of social apps
Hdc09   I Phone Dev Connecting To Web
15,604,157 Monthly Active Users
      Facebook for the iPhone
Tweetie 2 for the iPhone
Be unique.


             flickr: Erica Marshall
Game’s submitting
scores to community.
Post high score to
     twitter.
Announce new user
profile on Facebook.
Music related app uses
  Last.fm for data.
Grab data to populate a
         map.
Some devices are tied
directly to the cloud.
MORE and MORE!
Connection Methods.


                  flickr: barjack
Web Services
    ~=
 The Cloud
XML
RESTful please!
XML
There is no SOAP Client #642 or XML-RPC Client
           #1,203. You parse it yourself.
Options for Parsing
          XML
•   libxml2

    • Tree-based: easy to parse, tree in memory
    • Event-driven: less memory, more complex managing state
    • Text reader: fast, easy to write
•   NSXMLParser

    • Event-driven: simpler but less powerful than libXML
    • No NSXMLDocument on iPhone
•   expat too!!!
Hdc09   I Phone Dev Connecting To Web
Hdc09   I Phone Dev Connecting To Web
XML Code
NSXMLParser *parser = [[NSXMLParser alloc]initWithData:....];
XML Code
NSXMLParser *parser = [[NSXMLParser alloc]initWithData:....];
XML [delegate] Code
XML [delegate] Code
XML Docs.
• “Event Driven XML Programming in
  Cocoa” - ADC
• NSXMLParser.h / Supporting doc.
• NSXMLParserDelegate.h / Supporting doc.
• Sample code: XMLPerformance and
  SeismicXML
• Google: cocoa + nsxmlparser
JSON
JavaScript Object Notation
Hdc09   I Phone Dev Connecting To Web
Hdc09   I Phone Dev Connecting To Web
JavaScript Object
        Notation
• More lightweight than XML
• Similar to a Property List
 • arrays, dictionaries, strings, numbers
• Open Source json-framework wrapper for
  Objective-C
 • no “official” Apple library (yet)
JavaScript Object
         Notation
• If I have a choice, I prefer using JSON
 • Lightweight
 • Fast
 • Easy to parse and map to objects.
JSON Looks like

{
        “name” : “Hearful Andrena”,
        “pets” : 23,
        “poop-scooping-service” : false,
        “pet-names” : [“Hanna”,
                        “Nemo”}
    }
Parsing JSON
#import <JSON/JSON.h>

// Get a JSON string
NSString *jsonString = ....;

// Parsing will result in Foundation objects
id object = [jsonString JSONValue];
Using JSON-framework

// Create data.
NSDictionary *dictionary = ...;

// converts into a JSON spring.
jsonString = [dictionary JSONRepresentation];
Hdc09   I Phone Dev Connecting To Web
UIWebView
Best Practices
Asynchronous
Never parse on the main thread.
NSOperation
Never assume you
know the size of the
  server response.
Delegates methods
Show progress.
Hdc09   I Phone Dev Connecting To Web
Debugging.
Caching
Libraries, Frameworks
    and Wrappers


                    flickr: (Erik)
MGTwitterEngine
ObjectiveFlickr
Facebook Connect
iPhone on Rails
ASIHTTPRequest
Development Demos


                flickr: TheNixer
Development Demos


                flickr: TheNixer
Questions ?


              flickr: Jim in Times Square
ninth Division
real legit growing apple platforms development
              company in omaha, ne
           www.ninthdivision.com
             @ninthdivision

More Related Content

PDF
Ansible Berlin Meetup Intro talk by @danvaida
Dan Vaida
 
PDF
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
창훈 정
 
PDF
Building Composable Serverless Apps with IOpipe
Erica Windisch
 
PDF
Let's Get Acquainted: Ansible! / Symfony Camp UA 2014
Igor Brovchenko
 
PDF
Axemblr Provisionr 0.3.x Overview
Andrei Savu
 
PDF
IDI 2020 - Containers Meet Serverless
Massimo Ferre'
 
PPTX
Designing for elasticity on AWS - 9.11.2015
Anton Babenko
 
PDF
Ops for NoOps - Operational Challenges for Serverless Apps
Erica Windisch
 
Ansible Berlin Meetup Intro talk by @danvaida
Dan Vaida
 
Packer + Ansible을 이용한 AMI 생성 및 AutoScaling Group 이미지 교체 이야기
창훈 정
 
Building Composable Serverless Apps with IOpipe
Erica Windisch
 
Let's Get Acquainted: Ansible! / Symfony Camp UA 2014
Igor Brovchenko
 
Axemblr Provisionr 0.3.x Overview
Andrei Savu
 
IDI 2020 - Containers Meet Serverless
Massimo Ferre'
 
Designing for elasticity on AWS - 9.11.2015
Anton Babenko
 
Ops for NoOps - Operational Challenges for Serverless Apps
Erica Windisch
 

Viewers also liked (6)

PPTX
SMP Higher and Further Education Forum Dec 2014
Scotland Malawi Partnership
 
PPT
Conchetta House
Conchetta House
 
ODP
Conchetta House for investors
Conchetta House
 
PPT
Hear Is What People Are Saying About
Conchetta House
 
PPT
Conchetta house1111210
Conchetta House
 
ODP
Presentation For Julie
Conchetta House
 
SMP Higher and Further Education Forum Dec 2014
Scotland Malawi Partnership
 
Conchetta House
Conchetta House
 
Conchetta House for investors
Conchetta House
 
Hear Is What People Are Saying About
Conchetta House
 
Conchetta house1111210
Conchetta House
 
Presentation For Julie
Conchetta House
 
Ad

Similar to Hdc09 I Phone Dev Connecting To Web (20)

PDF
Reaktive Programmierung mit den Reactive Extensions (Rx)
NETUserGroupBern
 
KEY
Rails as iOS Application Backend
maximeguilbot
 
PDF
Hacking your Droid (Aditya Gupta)
ClubHack
 
PDF
IoT-javascript-2019-fosdem
Phil www.rzr.online.fr
 
PDF
OpenFaaS - zero serverless in 60 seconds anywhere with case-studies
Alex Ellis
 
PDF
FOXX - a Javascript application framework on top of ArangoDB
ArangoDB Database
 
PPTX
Quick look in Reactive Extensions
johnlvidal
 
PDF
Data Science
Ahmet Bulut
 
PPTX
Appcelerator Titanium Intro
Nicholas Jansma
 
PDF
Building APIs in an easy way using API Platform
Antonio Peric-Mazar
 
PDF
#MBLTdev: Уроки, которые мы выучили, создавая Realm
e-Legion
 
PPTX
Intro to appcelerator
Mohab El-Shishtawy
 
PDF
Building APIs in an easy way using API Platform
Antonio Peric-Mazar
 
PDF
Introduction to Realm Mobile Platform
Christian Melchior
 
PDF
Twelve ways to make your apps suck less
Fons Sonnemans
 
PDF
Building Rich Internet Apps with Silverlight 2
Microsoft Iceland
 
PDF
F8 tech talk_pinterest_v4
malorie_pinterest
 
PPTX
Node js - Enterprise Class
Glenn Block
 
PPTX
"Python web development combines the simplicity of the language with powerful...
softwaretrainer2elys
 
PPTX
Introduction to React native
Dhaval Barot
 
Reaktive Programmierung mit den Reactive Extensions (Rx)
NETUserGroupBern
 
Rails as iOS Application Backend
maximeguilbot
 
Hacking your Droid (Aditya Gupta)
ClubHack
 
IoT-javascript-2019-fosdem
Phil www.rzr.online.fr
 
OpenFaaS - zero serverless in 60 seconds anywhere with case-studies
Alex Ellis
 
FOXX - a Javascript application framework on top of ArangoDB
ArangoDB Database
 
Quick look in Reactive Extensions
johnlvidal
 
Data Science
Ahmet Bulut
 
Appcelerator Titanium Intro
Nicholas Jansma
 
Building APIs in an easy way using API Platform
Antonio Peric-Mazar
 
#MBLTdev: Уроки, которые мы выучили, создавая Realm
e-Legion
 
Intro to appcelerator
Mohab El-Shishtawy
 
Building APIs in an easy way using API Platform
Antonio Peric-Mazar
 
Introduction to Realm Mobile Platform
Christian Melchior
 
Twelve ways to make your apps suck less
Fons Sonnemans
 
Building Rich Internet Apps with Silverlight 2
Microsoft Iceland
 
F8 tech talk_pinterest_v4
malorie_pinterest
 
Node js - Enterprise Class
Glenn Block
 
"Python web development combines the simplicity of the language with powerful...
softwaretrainer2elys
 
Introduction to React native
Dhaval Barot
 
Ad

Recently uploaded (20)

PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PPTX
The Future of AI & Machine Learning.pptx
pritsen4700
 
PDF
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
PDF
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
Peak of Data & AI Encore - Real-Time Insights & Scalable Editing with ArcGIS
Safe Software
 
PPTX
Agile Chennai 18-19 July 2025 Ideathon | AI Powered Microfinance Literacy Gui...
AgileNetwork
 
PPTX
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
The Future of AI & Machine Learning.pptx
pritsen4700
 
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Peak of Data & AI Encore - Real-Time Insights & Scalable Editing with ArcGIS
Safe Software
 
Agile Chennai 18-19 July 2025 Ideathon | AI Powered Microfinance Literacy Gui...
AgileNetwork
 
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 

Hdc09 I Phone Dev Connecting To Web