SlideShare a Scribd company logo
im ti nfernandgaliana
Friday, May 17, 13
Born and raised in
Crieff!
Friday, May 17, 13
Friday, May 17, 13
kitesurfer
derailed
github.com/derailed
fernand.galiana
Friday, May 17, 13
Friday, May 17, 13
ObjC
IOS SDK
Xcode
Memory
Friday, May 17, 13
Friday, May 17, 13
Friday, May 17, 13
Friday, May 17, 13
blownspeaker!
Friday, May 17, 13
railsBRO
IOS
IOS
IOS
Db
Fb
Friday, May 17, 13
bigdeal?
Not even Ruby!
Still need to learn IOS
Can’t use my xxx gem ;-(
Write once, run once
Friday, May 17, 13
Friday, May 17, 13
Friday, May 17, 13
Friday, May 17, 13
Friday, May 17, 13
cocoapods
app.pods do
pod 'AFNetworking'
end
Rakefile
Friday, May 17, 13
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"bumbleblee_tuna"];
Friday, May 17, 13
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"bumbleblee_tuna"];
Friday, May 17, 13
NSUserDefaults.standardUserDefaults.
objectForKey("bumblebee_tuna")
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"bumbleblee_tuna"];
Friday, May 17, 13
NSUserDefaults.standardUserDefaults.
objectForKey("bumblebee_tuna")
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"bumbleblee_tuna"];
Friday, May 17, 13
NSUserDefaults.standardUserDefaults.
objectForKey("bumblebee_tuna")
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"bumbleblee_tuna"];
App.user_cache[:bumblebee_tuna]
Friday, May 17, 13
NSUserDefaults.standardUserDefaults.
objectForKey("bumblebee_tuna")
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *myString = [prefs stringForKey:@"bumbleblee_tuna"];
App.user_cache[:bumblebee_tuna]
bubble-wrapped
Friday, May 17, 13
NSUserDefaults.standardUserDefaults.
objectForKey("bumblebee_tuna")
NSUserDefaults *prefs =
[NSUserDefaults standardUserDefaults];
NSString *myString =
[prefs stringForKey:@"bumbleblee_tuna"];
App.user_cache[:bumblebee_tuna]
bubble-wrapped
Friday, May 17, 13
Friday, May 17, 13
UIColor.colorWithRed( 50/255.0,
green:50/255.0,
blue:50/255.0,
alpha:0.5 )
0x5b5b5b.uicolor
Friday, May 17, 13
UIColor.colorWithRed( 50/255.0,
green:50/255.0,
blue:50/255.0,
alpha:0.5 )
0x5b5b5b.uicolor
sugarcubed
Friday, May 17, 13
✓Rails integration
✓Collections
✓Third party services
✓Autolayout
✓Web views
✓Social connect
✓Pods
✓RM Gems
✓CustomViews
✓Custom Alerts
✓Notifications
✓Styling
✓Gestures
Friday, May 17, 13
localweb
def viewDidLoad
super
@content = UIWebView.alloc.initWithFrame( [[0,0],[300,300]] )
@content.loadHTMLString( html, baseURL:base_url )
view.addSubview( @content )
end
def base_url
@base_url ||= NSURL.fileURLWithPath( App.resources_path )
end
def html
<<HTML
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/font-awesome.css"/>
<link rel="stylesheet" type="text/css" href="css/app.css"/>
</head>
...
</html>
HTML
end
Friday, May 17, 13
networking
app.pods do
pod 'AFNetworking'
end
def self.shared
$instance ||= begin
BlownSpeakerClient.alloc.initWithBaseURL( base_url ).tap do |client|
client.registerHTTPOperationClass( AFJSONRequestOperation )
client.setDefaultHeader( 'Accept', value:'application/json' )
end
end
end
def fetch_proposals(&cb)
getPath( "/confs/#{App.delegate.conf_id}.json",
parameters: {},
success: ->(operation, response) { cb.call response, nil },
failure: ->(operation, error) { cb.call nil, error }
)
end
def self.base_url
@url ||= begin
uri = Device.simulator? ? "http://localhost:3000" : "http://192.168.122:3000"
NSURL.URLWithString( uri )
end
end
def setup( talk )
...
@mug_shot.setImageWithURL( NSURL.URLWithString( talk.speaker.avatar ),
placeHolderImage: place_holder_img )
end
Rakefile
Friday, May 17, 13
Friday, May 17, 13
|[visual]-20-[constraints]|
@content.translatesAutoresizingMaskIntoConstraints = false
def setup_constraints
metrics = { 'sp' => 5 }
contentView.addConstraints
NSLayoutConstraint.constraintsWithVisualFormat
"V:|-ps-[mug_shot(100)][scorer(20)][speaker(30)]-ps-",
options: 0,
metrics: metrics,
views: @views ))
...
end
Friday, May 17, 13
soopastyling!
I don’t usually pimp out my UI’s,
but when I do...
I use stylesheets!
Friday, May 17, 13
NUI
Pixate
Teacup
Promotion
Friday, May 17, 13
Friday, May 17, 13
testing
Friday, May 17, 13
appstore
Friday, May 17, 13
appstore
✓ Distribution profile
✓App screenshots x-devices
✓Icons (@2x) - rinse and repeat for devices!
✓ITune connect
✓rake archive:distribution
✓Application loader
Friday, May 17, 13
arewethereyet?
Friday, May 17, 13
appstorereality
Friday, May 17, 13
Friday, May 17, 13
pimpitdogg!
Friday, May 17, 13
motionblow
Friday, May 17, 13
Friday, May 17, 13
questions?
Friday, May 17, 13

More Related Content

PDF
PDF
Rails-3-app-auto-generator-20100817
PDF
PerlDancer for Perlers (FOSDEM 2011)
ODP
Perl Dancer, FPW 2010
PDF
Perl Dancer for Python programmers
ODP
Writing webapps with Perl Dancer
KEY
Railties
ODP
An introduction to Rex - FLOSS UK DevOps York 2015
Rails-3-app-auto-generator-20100817
PerlDancer for Perlers (FOSDEM 2011)
Perl Dancer, FPW 2010
Perl Dancer for Python programmers
Writing webapps with Perl Dancer
Railties
An introduction to Rex - FLOSS UK DevOps York 2015

What's hot (19)

PDF
Csharp_Contents
PPTX
Killer page load performance
PDF
Dancing Tutorial
PPTX
Html5 awesomeness
PDF
The story became happy with itamae
PPTX
Using WordPress as your application stack
PPTX
Sinatra
DOCX
Hyperlink
PDF
Monitoring web application behaviour with cucumber-nagios
PDF
Running Node.js in Production using Passenger
PDF
Summit2014 topic 0153 - Alfresco Maven for shared properties
PDF
Deprecating ActiveRecord Attributes without making Zombies
PPT
A Quick Introduction to Sinatra
PDF
20150727 Development tools for Firefox OS apps
PPT
All That Jazz
PDF
アジャイルなサムライとプラクティスづくり
ODP
Dancer's Ecosystem
PDF
Magical WordPress Development with Vagrant
TXT
Alfresco global.properties
Csharp_Contents
Killer page load performance
Dancing Tutorial
Html5 awesomeness
The story became happy with itamae
Using WordPress as your application stack
Sinatra
Hyperlink
Monitoring web application behaviour with cucumber-nagios
Running Node.js in Production using Passenger
Summit2014 topic 0153 - Alfresco Maven for shared properties
Deprecating ActiveRecord Attributes without making Zombies
A Quick Introduction to Sinatra
20150727 Development tools for Firefox OS apps
All That Jazz
アジャイルなサムライとプラクティスづくり
Dancer's Ecosystem
Magical WordPress Development with Vagrant
Alfresco global.properties
Ad

Similar to I motion (20)

PDF
Great Developers Steal
PDF
Empezando con Twig
PDF
spring3.2 java config Servler3
PDF
Tek 2013 - Building Web Apps from a New Angle with AngularJS
PDF
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
PDF
Keeping it small - Getting to know the Slim PHP micro framework
PDF
Silex: From nothing to an API
PPT
Meetup uikit programming
PDF
Phing i Fabric - Budowanie i deployment aplikacji webowych
PDF
Hammering Responsive Web Design Into Shape
PPT
A Quick Introduction to Sinatra
PDF
What is this DI and AOP stuff anyway...
PDF
CDI do básico ao avançado
PDF
Nginx Workshop Aftermath
PDF
Mastering ElasticSearch with Ruby and Tire
PDF
Survey of Front End Topics in Rails
PDF
Lone StarPHP 2013 - Building Web Apps from a New Angle
PDF
Building a Dynamic Website Using Django
PDF
Mulberry: A Mobile App Development Toolkit
PDF
Intro tobackbone
Great Developers Steal
Empezando con Twig
spring3.2 java config Servler3
Tek 2013 - Building Web Apps from a New Angle with AngularJS
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
Keeping it small - Getting to know the Slim PHP micro framework
Silex: From nothing to an API
Meetup uikit programming
Phing i Fabric - Budowanie i deployment aplikacji webowych
Hammering Responsive Web Design Into Shape
A Quick Introduction to Sinatra
What is this DI and AOP stuff anyway...
CDI do básico ao avançado
Nginx Workshop Aftermath
Mastering ElasticSearch with Ruby and Tire
Survey of Front End Topics in Rails
Lone StarPHP 2013 - Building Web Apps from a New Angle
Building a Dynamic Website Using Django
Mulberry: A Mobile App Development Toolkit
Intro tobackbone
Ad

More from Fernand Galiana (10)

PDF
GraphQLUs For The RestOfUs!
PDF
Sailing into 2018 with Kubernetes and Istio
PDF
GraphQL, The New Black?
PDF
You, Mix and Kubee
PDF
Docker Container Orchestration
PDF
Bucket List Item #1246
PDF
In The Land Of Graphs...
PDF
What's new in Rails5?
PDF
R-House (LSRC)
PDF
Rhouse - Home automation is ruby ?
GraphQLUs For The RestOfUs!
Sailing into 2018 with Kubernetes and Istio
GraphQL, The New Black?
You, Mix and Kubee
Docker Container Orchestration
Bucket List Item #1246
In The Land Of Graphs...
What's new in Rails5?
R-House (LSRC)
Rhouse - Home automation is ruby ?

Recently uploaded (20)

PDF
Web App vs Mobile App What Should You Build First.pdf
PPTX
The various Industrial Revolutions .pptx
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
Architecture types and enterprise applications.pdf
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
Hybrid model detection and classification of lung cancer
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Developing a website for English-speaking practice to English as a foreign la...
PPT
What is a Computer? Input Devices /output devices
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
Tartificialntelligence_presentation.pptx
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Getting Started with Data Integration: FME Form 101
PPTX
OMC Textile Division Presentation 2021.pptx
Web App vs Mobile App What Should You Build First.pdf
The various Industrial Revolutions .pptx
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Architecture types and enterprise applications.pdf
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
Hybrid model detection and classification of lung cancer
Module 1.ppt Iot fundamentals and Architecture
WOOl fibre morphology and structure.pdf for textiles
Developing a website for English-speaking practice to English as a foreign la...
What is a Computer? Input Devices /output devices
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Univ-Connecticut-ChatGPT-Presentaion.pdf
Tartificialntelligence_presentation.pptx
O2C Customer Invoices to Receipt V15A.pptx
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Getting Started with Data Integration: FME Form 101
OMC Textile Division Presentation 2021.pptx

I motion