Slide 1

Slide 1 text

The iPhone 5 and You! Tall is the new retina.

Slide 2

Slide 2 text

Not The Time To Procrastinate

Slide 3

Slide 3 text

Not The Time To Procrastinate • Early adopters tend to pay for apps

Slide 4

Slide 4 text

Not The Time To Procrastinate • Early adopters tend to pay for apps • Avoid the one star downvotes

Slide 5

Slide 5 text

Not The Time To Procrastinate • Early adopters tend to pay for apps • Avoid the one star downvotes • It’s what Steve would have wanted

Slide 6

Slide 6 text

The Letterbox

Slide 7

Slide 7 text

The Letterbox • Include a new Default.png named Default-568h@2x.png

Slide 8

Slide 8 text

The Letterbox • Include a new Default.png named Default-568h@2x.png • Needs to be 640 × 1136 pixels

Slide 9

Slide 9 text

The Letterbox • Include a new Default.png named Default-568h@2x.png • Needs to be 640 × 1136 pixels • Thats it.

Slide 10

Slide 10 text

But Wait! My App is Broken!

Slide 11

Slide 11 text

But Wait! My App is Broken! • Xcode 4.5

Slide 12

Slide 12 text

But Wait! My App is Broken! • Xcode 4.5 • iOS 6

Slide 13

Slide 13 text

But Wait! My App is Broken! • Xcode 4.5 • iOS 6 • armV7s

Slide 14

Slide 14 text

The Window

Slide 15

Slide 15 text

The Window • Full screen at launch

Slide 16

Slide 16 text

The Window • Full screen at launch

Slide 17

Slide 17 text

The Window • Full screen at launch

Slide 18

Slide 18 text

The Window • self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; • Full screen at launch

Slide 19

Slide 19 text

The Window • self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; • Set root view controller • Full screen at launch

Slide 20

Slide 20 text

Rotation

Slide 21

Slide 21 text

Rotation • If all views rotate the same way, simply set those in your plist

Slide 22

Slide 22 text

Rotation • If all views rotate the same way, simply set those in your plist • shouldAutorotateToInterfaceOrientation

Slide 23

Slide 23 text

Rotation • If all views rotate the same way, simply set those in your plist • shouldAutorotateToInterfaceOrientation • supportedInterfaceOrientations

Slide 24

Slide 24 text

Rotation • If all views rotate the same way, simply set those in your plist • shouldAutorotateToInterfaceOrientation • supportedInterfaceOrientations • Checks the root view controller

Slide 25

Slide 25 text

Rotation • If all views rotate the same way, simply set those in your plist • shouldAutorotateToInterfaceOrientation • supportedInterfaceOrientations • Checks the root view controller • Subclass UINavigationController and UITabBarController

Slide 26

Slide 26 text

Auto Layout

Slide 27

Slide 27 text

Auto Layout • It’s the bee’s knees

Slide 28

Slide 28 text

Auto Layout • It’s the bee’s knees • iOS 6 only

Slide 29

Slide 29 text

Auto Layout • It’s the bee’s knees • iOS 6 only • New xibs have it enabled by default

Slide 30

Slide 30 text

The Hard Way

Slide 31

Slide 31 text

The Hard Way • UIViewAutoresizingFlexibleHeight

Slide 32

Slide 32 text

The Hard Way • UIViewAutoresizingFlexibleHeight • Resize will occur in viewWillAppear not viewDidLoad

Slide 33

Slide 33 text

The Hard Way • UIViewAutoresizingFlexibleHeight • Resize will occur in viewWillAppear not viewDidLoad • ([[UIScreen mainScreen] bounds].size.height == 568)

Slide 34

Slide 34 text

The Hard Way • UIViewAutoresizingFlexibleHeight • Resize will occur in viewWillAppear not viewDidLoad • ([[UIScreen mainScreen] bounds].size.height == 568) • New ratio

Slide 35

Slide 35 text

The Hard Way • UIViewAutoresizingFlexibleHeight • Resize will occur in viewWillAppear not viewDidLoad • ([[UIScreen mainScreen] bounds].size.height == 568) • New ratio • CGRectIntegral

Slide 36

Slide 36 text

The March of Progress

Slide 37

Slide 37 text

The March of Progress • iPhone 5 supports the armV7s instruction set

Slide 38

Slide 38 text

The March of Progress • iPhone 5 supports the armV7s instruction set • Most statically compiled frameworks don’t

Slide 39

Slide 39 text

The March of Progress • iPhone 5 supports the armV7s instruction set • Most statically compiled frameworks don’t • lipo -info binaryFile

Slide 40

Slide 40 text

The March of Progress • iPhone 5 supports the armV7s instruction set • Most statically compiled frameworks don’t • lipo -info binaryFile • armV6 support dropped

Slide 41

Slide 41 text

The March of Progress • iPhone 5 supports the armV7s instruction set • Most statically compiled frameworks don’t • lipo -info binaryFile • armV6 support dropped • iOS 4.3 and up

Slide 42

Slide 42 text

View Life Cycle • viewDidUnload and viewWillUnload no longer called • didReceiveMemoryWarning • Don’t release your view

Slide 43

Slide 43 text

No content

Slide 44

Slide 44 text

Maps

Slide 45

Slide 45 text

Maps • Simply replace http://maps.google.com with http://maps.apple.com

Slide 46

Slide 46 text

Maps • Simply replace http://maps.google.com with http://maps.apple.com • Backwards compatible

Slide 47

Slide 47 text

The Light at the End of the Tunnel

Slide 48

Slide 48 text

The Light at the End of the Tunnel • UIActivityViewController

Slide 49

Slide 49 text

The Light at the End of the Tunnel • UIActivityViewController • UICollectionView

Slide 50

Slide 50 text

The Light at the End of the Tunnel • UIActivityViewController • UICollectionView • NSAttributedString

Slide 51

Slide 51 text

The Light at the End of the Tunnel • UIActivityViewController • UICollectionView • NSAttributedString • UIRefreshControl

Slide 52

Slide 52 text

The Light at the End of the Tunnel • UIActivityViewController • UICollectionView • NSAttributedString • UIRefreshControl • Lots more

Slide 53

Slide 53 text

More Info • Twitter: @ameir • NSCoder