iPhone
Making an APP
Start thinking about an app




                    Create a Mockup: http://iphonemockup.lkmc.ch/
www.MitAPP.com                             http://twitter.com/MitAPP
And now?
                                  NavBar? TabBar?


                     how many buttons?


                                  Colors?




www.MitAPP.com                           http://twitter.com/MitAPP
Make a lot of sketches




www.MitAPP.com           http://twitter.com/MitAPP
DEMO


   • DEMO        (15-20’):

        Brainstorming about a project




www.MitAPP.com                          http://twitter.com/MitAPP
Turning an iPhone Idea into a
        successful iPhone app
 4-step that lead from an initial idea to the final
 product that’s available in the AppStore.     First there is great idea, right?
                                                         But how good is the idea really? Is it
                                                    1    worth to proceed and invest money in
                                                         developing an iPhone app?


                                                         Checking an idea and validating its
                                                         feasibility is one of the most important
                                                    2    steps to avoid spending money on the
                                                         wrong thing!

                                                         Once the idea is confirmed as having
                                                         the right potential the
                                                    3    development process can be kicked off.
                                                         Do it yourself or get the pros in to do
                                                         it for you.

                                                         Submitting to Apple and getting
                                                         the app on users phones is next.
                                                    4    Just putting the app in the AppStore
                                                         wont sell it!
                 [source: jtribe.com.au]
www.MitAPP.com                                                          http://twitter.com/MitAPP
1
                              The Idea
           “Hey, I have a great iPhone App idea!”
                      So you got a great iPhone application idea. That is obviously
                      the very first step of every great iPhone app.

                      Make sure you know who the end-user will be and
                      what problem it will solve. But even an unconventional
                      “quirky” idea may become a very successful iPhone app.

                      We are not going to tell you how to generate a great idea.

                      We’d rather tell you how to validate and do some sanity
                      checking of you great idea.

                      Manifest your idea with some key principles that describe the
                      core of your idea.



                 [source: jtribe.com.au]
www.MitAPP.com                                                            http://twitter.com/MitAPP
                                                                                     Prepared by jTribe, 2009
2
                 The Idea Check
                   “...and it actually could work”
                 The critical question is actually what you want to achieve with your iPhone app.
                 Basically there are two ways to get return on an iPhone app.
                    1) make a million through AppStore sales
                    2) use it as a marketing tool to promote another service or product

                 In both cases it is crucial to understand the structure and size of your user-base.
                 In the first case the size will determine the dollar-return you can make with the
                 app. In the second case it will determine the marketing effect.

                 Assuming you want to make a million dollars through AppStore sales it is crucial
                 that you understand the iPhone economics. How many iPhone users are there?
                 How much money can I make in my segment? ...

                 If you don’t plan to become number one in the AppStore in the category you
                 target then don’t expect a return of investment.

                 We highly recommend that you ensure that your idea can enter the top 10 apps
                 in the AppStore. Otherwise, consider it a learning exercise.


                  [source: jtribe.com.au]
www.MitAPP.com                                                                    http://twitter.com/MitAPP
                                                                                             Prepared by jTribe, 2009
3
                     Development
                      “Lets get this baby built”
         So you are convinced that your idea could fly? Then it’s time to get in to the technical part.

         Development costs money. Great iPhone development cost even more money.
         If you are really committed to develop the best possible iPhone app then you should move
         ahead and engage the development process. However, if you have doubts at this stage then
         don’t waste your money or effort.

         The development process could fill a book. Assuming that you are not a professional iPhone
         developer here is a brief summary:

         Get your scope right. Prepare your wireframes. Get some quotes from iPhone
         developers. Make a decision and choose the most awesome developers you can afford.
         Now let the iPhone developers do their magic and make sure they stick to your initial idea.

         Find a group of beta tester. Submit your iPhone application to the Apple AppStore. Be
         prepared to wait a couple of weeks before Apple has approved your app.

         There are many little things that could go wrong in this step so get some professional help.
         AND DON’T FORGET YOUR MARKETING

                  [source: jtribe.com.au]
www.MitAPP.com                                                                   http://twitter.com/MitAPP
                                                                                            Prepared by jTribe, 2009
4
         Life in the AppStore
                       “I just made a million $”
                 Great, you got your app in the AppStore.

                 If you have timed your marketing correctly you should have a huge
                 initial boost of app downloads. Make sure you are going to keep the
                 momentum up.

                 Be wise around any prices changes decisions and consider price
                 elasticity.

                 Monitor your app usage. (e.g. pinchmedia.com)

                 Communicate with your app users. (e.g. shoutmob.com)

                 Use tools and promotion means.

                 Release updates.

                 Keep on top of the curve. If your idea flies then makes sure that you
                 add features users may like.

                 [source: jtribe.com.au]
www.MitAPP.com                                                               http://twitter.com/MitAPP
                                                                                        Prepared by jTribe, 2009
Useful Tips to plan

      • Work in group (if possible)
      • Search simil works, study the market
      • Maybe there are already a lot of code
         developed and free to use...
      • Agile Tech.
      • Code is the last thing
www.MitAPP.com                              http://twitter.com/MitAPP
Anatomy of an Application
• Compiled code
   ■Your code
   ■ Frameworks



• Nib files
   ■ UI elements and other objects
   ■ Details about object relationships



• Resources (images, sounds, strings, database, etc.)
• Info.plist file (application configuration)
• UIKit Framework
   • Provides standard interface elements

www.MitAPP.com                                    http://twitter.com/MitAPP
UIKit Framework
  • Starts your application
  • Every application has a single instance of UIApplication
     ■   Singleton design pattern
          @interface UIApplication
             + (UIApplication *)sharedApplication
          @end

     ■   Orchestrates the lifecycle of an application
     ■   Dispatches events
     ■   Manages status bar, application icon badge
     ■   Rarely subclassed
     ■   Uses delegation instead

www.MitAPP.com                                          http://twitter.com/MitAPP
Delegation

• Control passed to delegate objects to perform application-
specific behavior
• Avoids need to subclass complex objects
• Many UIKit classes use delegates
   ■ UIApplication
   ■ UITableView

   ■ UITextField




www.MitAPP.com                                   http://twitter.com/MitAPP
UIApplication Delegate
• Xcode project templates have one set up by default
• Object you provide that participates in application lifecycle
• Can implement various methods which UIApplication will call


• Examples:
-   (void)applicationDidReceiveMemoryWarning:(UIApplication *)application;
-   (void)applicationWillResignActive:(UIApplication *)application;
-   (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url;
-   (void)applicationDidFinishLaunching:(UIApplication *)application;
-   (void)applicationWillTerminate:(UIApplication *)application;




www.MitAPP.com                                                    http://twitter.com/MitAPP
Info.plist file
   • Property List (often XML), describing your application
      ■ Icon appearance
      ■ Status bar style (default, black, hidden)

      ■ Orientation

      ■ Uses Wi-fi networking

      ■ System Requirements


   • Can edit most properties in Xcode
      ■ Project > Edit Active Target “Foo” menu item
      ■ On the properties tab




www.MitAPP.com                                         http://twitter.com/MitAPP
Model,View, Controller




 Model
 • Manages the app data and state
 • Not concerned with UI or presentation
 • Often persists somewhere
 • Same model should be reusable, unchanged in different interfaces
www.MitAPP.com                                         http://twitter.com/MitAPP
Model,View, Controller



  View
  • Present the Model to the user in an appropriate interface
  • Allows user to manipulate data
  • Does not store any data
     ■   (except to cache state)
  • Easily reusable & configurable to display different data
www.MitAPP.com                                            http://twitter.com/MitAPP
Model,View, Controller




  Controller
  •Intermediary between Model & View
  •Updates the view when the model changes
  •Updates the model when the user manipulates the view
  •Typically where the app logic lives.
www.MitAPP.com                                  http://twitter.com/MitAPP
Model,View, Controller
                   Controller

                 outlets

                 actions




      Model
      Object


www.MitAPP.com                  http://twitter.com/MitAPP
Nib Files - Design Time
    • Helps you design the ʻVʼ in MVC:
       ■ Layout user interface elements
       ■ Add controller objects

       ■ Connect the controller and UI




www.MitAPP.com                            http://twitter.com/MitAPP
Nib Loading
     • At runtime, objects are unarchived
        ■ Values/settings in Interface Builder are restored
        ■ Ensures all outlets and actions are connected

        ■ Order of unarchiving is not defined


        • If loading the nib (.xib file) automatically
        creates objects and order is undefined, how do I
        customize?
            ■   For example, to displaying initial state




www.MitAPP.com                                             http://twitter.com/MitAPP
Nib Loading - awakeFromNib
• Control point to implement any additional logic after nib
loading
• Default empty implementation on NSObject
• You often implement it in your controller class
   ■   e.g. to restore previously saved application state

• Guaranteed everything has been unarchived from nib,
and all connections are made before -awakeFromNib is
called
   - (void)awakeFromNib {
             // do customization here
        }
www.MitAPP.com                                              http://twitter.com/MitAPP
Controls - Events
• View objects that allows users to initiate some type of action
• Respond to variety of events
      ■   Touch events
      ■ touchDown
      ■ touchDragged (entered, exited, drag inside, drag outside)

      ■ touchUp (inside, outside)


■   Value changed
■   Editing events
      ■ editing began
      ■ editing changed

      ■ editing ended




    www.MitAPP.com                                         http://twitter.com/MitAPP
How to Build an iPhone App that
                  Doesn't Suck!

      •   Step 1: Decide what to build
          Principle 1: Know your users.

      •   Step 2: Visit the app store
          Principle 2: Don't build your app in a bubble

      •   Step 3: Explore Possible solutions
          Principle 3: Be minimal

      •   Step 4: Sketch
          Principle 4: Quality through quantity

      •   Step 5: Build a paper prototype
          Principle 5: Fail early to succeed sooner.




                                      [Source] Stanford CS193P
www.MitAPP.com                                                   http://twitter.com/MitAPP
How to Build an iPhone App that
                  Doesn't Suck!


      •   Step 6: Fire up omnigraffle (or Photoshop)
          Principle 6: Be pixel-perfect

      •   Step 7: Do It All Again
          Principle 7: Remember that nothing is precious

      •   Step 8: Okay, You can code finally

      •   Step 9: Beta Test Your App
          Principle 9: Test Before you submit

      •   Step 10: Release




                                    [Source] Stanford CS193P
www.MitAPP.com                                                 http://twitter.com/MitAPP
Key Points


      • Talk to users
      • Explore many designs
      • Iterate based on user feedback


                      [Source] Stanford CS193P
www.MitAPP.com                                   http://twitter.com/MitAPP
www.MitAPP.com   http://twitter.com/MitAPP
Resources
     •   Main Apple Dev Site: http://developer.apple.com/iphone/

     •   Community Forum: http://www.iphonedevsdk.com/

     •   Tips: http://iphonedevelopertips.com/

     •   Blog: http://iphoneincubator.com/blog/

     •   StackOverflow: http://stackoverflow.com/

     •   Italian Sites: iSpazio, iPhoneItalia, MelaMorsicata, MacLounge, etc...

     •   ... search “iphone dev” on Google...

     •   To create video trailers for your app: http://www.vimov.com/isimulate/




www.MitAPP.com                                                              http://twitter.com/MitAPP
DEMO


   • DEMO        (30’):

        Create an application




www.MitAPP.com                   http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)
  With more than 15 million downloads, “Tap Tap Revenge” is by far the most popular game
  on the iPhone and iPod touch.




       •   Some core principles behind running a succesful
           software startup don't change:
           - Build a great team
           - Strengthen you brand
           - Work to become more predictable...
           - ...Without killing creativity and energy
           - Seek out and listen to advice


                                      [Source] Stanford CS193P
www.MitAPP.com                                                               http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)


      • Build a Great Team
         - Don't be afraid to be very selective
         - Passion and integrity are paramount
         - Be flexible about job descriptions when
         you're small
         - As you grow, make sure to diversify


                       [Source] Stanford CS193P
www.MitAPP.com                                    http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)

      • Strengthen Your Brand
         - Invest in the aestetics
         - Don't compromise "too much" on quality
         - Use Twitter,YouTube, and other
         community-driven sites
         - Piggy-back on Apple's marketing prowess
         - Store rankings and ratings matter


                       [Source] Stanford CS193P
www.MitAPP.com                                    http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)

      •   Become More Predictable
          - Know exactly what needs to go into any given
          release
          - Track how long it takes you to get that work done
          - Get status from your team regularly
          - Become a conservative when you're getting ready
          to ship
          - Code reviews, even if informal
          - "Blockers" only
          - Ad hoc Distribution for Betas

                           [Source] Stanford CS193P
www.MitAPP.com                                        http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)


     • Encourage Creativity
       - 20% time
         - "Skunkworks" (from Wikipedia: “widely used in
         business, engineering, and technical fields to describe a group within an
         organization given a high degree of autonomy andunhampered by
         bureaucracy, tasked with working on advanced or secret projects.”)
         - Facilitate healty brainstorming
         - Stay flexible


                                   [Source] Stanford CS193P
www.MitAPP.com                                                          http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)


      • Seek Advice
         - Listen to your customers
         (GetSatisfaction, Twitter)
         - Have coffee with your peers
         - Pay attention to your current & potential
         investor


                       [Source] Stanford CS193P
www.MitAPP.com                                    http://twitter.com/MitAPP
From Upstart to Startup to Grownup
         (Jessica Kahn - Tapoulus)

 •   Successful iPhone Software Development Practices:
     What I Learned in School:
     - If you struggle with a crazy bug, and you start to suspect the compiler,
     you're wrong, it's not the comiler, it's you
     What I Learned at Apple:
     - Actually, it could well be the compiler.
     What I Learned at Tapolous:
     - Ok, it's probably not the compiler.
     - ...but it sure as heck might be some crazy edge case in what is a
     fantastically rich, but extremely fast-moving, and very new, platform.


                               [Source] Stanford CS193P
www.MitAPP.com                                                 http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)

      • Blame is Unimportant
         - Hone you problem-solving skills
         - You can never be too good at gdb
         - You can never be too foog at Googling
         - You can never know too many people
         - Code defensively
         - Establish some "best practices"


                       [Source] Stanford CS193P
www.MitAPP.com                                    http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)

  •   Best Practices
      - Don't be cute; your new teammate will not appreciate
      how smart you are nearly as much as you do
      - Werror was implemented for a reason
      - Step throug new code, and/or write unit tests
      - Periodically chech for leaks, smashers, and other
      misbehavior
      - For Internet-savvy applications, use a sniffer to verify
      traffic patterns


                          [Source] Stanford CS193P
www.MitAPP.com                                       http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)


      • Best Practices , iPhone-Specific
         - It's just like Mac OS X, right? Wrong.
         - Use real devices for testing, regurarly
         - Offline and bad Edge connections are
         common use cases



                        [Source] Stanford CS193P
www.MitAPP.com                                     http://twitter.com/MitAPP
From Upstart to Startup to Grownup
        (Jessica Kahn - Tapoulus)


      • Wrapping UP
         - The iTunes App Store is a crazy and fun
         marketplace
         - The iPhone OS is a craty and fun platform
         - You can be indie and be a success
         - You can build a company and be a succes


                       [Source] Stanford CS193P
www.MitAPP.com                                    http://twitter.com/MitAPP

More Related Content

PDF
Apple: 8 easy steps to beat Microsoft (and Google)
PDF
Computers Are Opening Their Eyes - And They're Already Better at Seeing Than ...
PPTX
Mobile product - "Build great apps!" at ProductTank Paris #17
PDF
SearchLove London 2015 | Will Critchlow | Practical Tips for the Future of ...
PDF
#MobileRevolution - How Mobile Is Changing You
PPTX
SnapChat- The Rule Breaker of Social media app
PDF
How Can Artificial Intelligence Make Business More Human?
PDF
A smart guide to app development
Apple: 8 easy steps to beat Microsoft (and Google)
Computers Are Opening Their Eyes - And They're Already Better at Seeing Than ...
Mobile product - "Build great apps!" at ProductTank Paris #17
SearchLove London 2015 | Will Critchlow | Practical Tips for the Future of ...
#MobileRevolution - How Mobile Is Changing You
SnapChat- The Rule Breaker of Social media app
How Can Artificial Intelligence Make Business More Human?
A smart guide to app development

What's hot (7)

PDF
App Development Smart Guide
PDF
Getting Ideas Out of Your Head and Into the App Store
PPTX
Deep linking at App Promotion Summit
PDF
Sugsa mobile ux_april 2013
KEY
Mobile Apps - Where's the beef
PDF
Growth hacking des apps mobiles - au Web2Connect #W2C15
PDF
Marketing your app on a shoestring - tips on PR, marketing, ASO and self-pub...
App Development Smart Guide
Getting Ideas Out of Your Head and Into the App Store
Deep linking at App Promotion Summit
Sugsa mobile ux_april 2013
Mobile Apps - Where's the beef
Growth hacking des apps mobiles - au Web2Connect #W2C15
Marketing your app on a shoestring - tips on PR, marketing, ASO and self-pub...
Ad

Similar to Making An App (20)

PDF
iPhone & iPad App Cash - The *COMPLETE GUIDE* to create iPhone app and how to...
PPSX
PPT for webinar- AppCompany
DOCX
A Guide for Anyone Who Wants to Turn App Development Idea into Reality
PDF
So You Want to Make an App Flowchart
PPTX
How to (and should you?) turn your app idea into a business
PPT
Apps for Profit
DOCX
Mobile Application Development - Guide 2020
PDF
Mobile Apps From Idea to App Store - A Marketer's Perspective
PPTX
PhoenixGMN - How To Go About An App Idea - Guide by SuperHitApps.com
PPT
Sourcebooks Apps 101 - BEA 2012
PDF
Android Apps For Profit Nov 2014
PPTX
How do you get your idea into the app store?
PPT
Iphone Presentation Wash U042110
PPTX
From an Idea to an iOS App
PPTX
10 key points for building the best app ever
PDF
Do You Really Need an App for that by Garry Partington
PDF
Smartphone Apps Secrets.pdf
PPTX
Steps For Building A Successful App For Your Business.pptx
PDF
Fallon Brainfood x Planning-ness 2010: How To Plan Apps
PPTX
Abc digital metro screen v2
iPhone & iPad App Cash - The *COMPLETE GUIDE* to create iPhone app and how to...
PPT for webinar- AppCompany
A Guide for Anyone Who Wants to Turn App Development Idea into Reality
So You Want to Make an App Flowchart
How to (and should you?) turn your app idea into a business
Apps for Profit
Mobile Application Development - Guide 2020
Mobile Apps From Idea to App Store - A Marketer's Perspective
PhoenixGMN - How To Go About An App Idea - Guide by SuperHitApps.com
Sourcebooks Apps 101 - BEA 2012
Android Apps For Profit Nov 2014
How do you get your idea into the app store?
Iphone Presentation Wash U042110
From an Idea to an iOS App
10 key points for building the best app ever
Do You Really Need an App for that by Garry Partington
Smartphone Apps Secrets.pdf
Steps For Building A Successful App For Your Business.pptx
Fallon Brainfood x Planning-ness 2010: How To Plan Apps
Abc digital metro screen v2
Ad

More from Omar Cafini (12)

PDF
Airbag studio - Convegno Autoimprenditorialità - Senigallia 2015
PDF
La mia storia di Libero Professionista
PDF
PRESENTAZIONE DEI PRINCIPALI SOCIAL MEDIA E LORO UTILIZZO NEL BUSINESS
PDF
Mobile & territorio
KEY
Sviluppare e vendere applicazioni per iPhone
KEY
Augmented Reality on iPhone Applications
KEY
Applicazioni iPhone: un mercato per tutti?
KEY
iPhone Development Tools
PPT
MarcheIN - Il centro benessere delle relazioni
PPT
presentazione MarcheIN
PPT
Bologna In 23 Febbraio2009
PPT
SolidITcamp - Piattaforma Open per favorire la comunicazione delle realtà non...
Airbag studio - Convegno Autoimprenditorialità - Senigallia 2015
La mia storia di Libero Professionista
PRESENTAZIONE DEI PRINCIPALI SOCIAL MEDIA E LORO UTILIZZO NEL BUSINESS
Mobile & territorio
Sviluppare e vendere applicazioni per iPhone
Augmented Reality on iPhone Applications
Applicazioni iPhone: un mercato per tutti?
iPhone Development Tools
MarcheIN - Il centro benessere delle relazioni
presentazione MarcheIN
Bologna In 23 Febbraio2009
SolidITcamp - Piattaforma Open per favorire la comunicazione delle realtà non...

Recently uploaded (20)

PPTX
Introduction to pro and eukaryotes and differences.pptx
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
PDF
My India Quiz Book_20210205121199924.pdf
PDF
Journal of Dental Science - UDMY (2020).pdf
PDF
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
PPTX
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
HVAC Specification 2024 according to central public works department
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PPTX
Core Concepts of Personalized Learning and Virtual Learning Environments
PDF
LEARNERS WITH ADDITIONAL NEEDS ProfEd Topic
PDF
CRP102_SAGALASSOS_Final_Projects_2025.pdf
PDF
Environmental Education MCQ BD2EE - Share Source.pdf
PDF
Vision Prelims GS PYQ Analysis 2011-2022 www.upscpdf.com.pdf
PDF
Complications of Minimal Access-Surgery.pdf
PDF
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
PDF
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
PDF
Journal of Dental Science - UDMY (2022).pdf
PPTX
Education and Perspectives of Education.pptx
PPTX
Module on health assessment of CHN. pptx
Introduction to pro and eukaryotes and differences.pptx
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
My India Quiz Book_20210205121199924.pdf
Journal of Dental Science - UDMY (2020).pdf
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
Cambridge-Practice-Tests-for-IELTS-12.docx
HVAC Specification 2024 according to central public works department
B.Sc. DS Unit 2 Software Engineering.pptx
Core Concepts of Personalized Learning and Virtual Learning Environments
LEARNERS WITH ADDITIONAL NEEDS ProfEd Topic
CRP102_SAGALASSOS_Final_Projects_2025.pdf
Environmental Education MCQ BD2EE - Share Source.pdf
Vision Prelims GS PYQ Analysis 2011-2022 www.upscpdf.com.pdf
Complications of Minimal Access-Surgery.pdf
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
Journal of Dental Science - UDMY (2022).pdf
Education and Perspectives of Education.pptx
Module on health assessment of CHN. pptx

Making An App

  • 2. Start thinking about an app Create a Mockup: http://iphonemockup.lkmc.ch/ www.MitAPP.com http://twitter.com/MitAPP
  • 3. And now? NavBar? TabBar? how many buttons? Colors? www.MitAPP.com http://twitter.com/MitAPP
  • 4. Make a lot of sketches www.MitAPP.com http://twitter.com/MitAPP
  • 5. DEMO • DEMO (15-20’): Brainstorming about a project www.MitAPP.com http://twitter.com/MitAPP
  • 6. Turning an iPhone Idea into a successful iPhone app 4-step that lead from an initial idea to the final product that’s available in the AppStore. First there is great idea, right? But how good is the idea really? Is it 1 worth to proceed and invest money in developing an iPhone app? Checking an idea and validating its feasibility is one of the most important 2 steps to avoid spending money on the wrong thing! Once the idea is confirmed as having the right potential the 3 development process can be kicked off. Do it yourself or get the pros in to do it for you. Submitting to Apple and getting the app on users phones is next. 4 Just putting the app in the AppStore wont sell it! [source: jtribe.com.au] www.MitAPP.com http://twitter.com/MitAPP
  • 7. 1 The Idea “Hey, I have a great iPhone App idea!” So you got a great iPhone application idea. That is obviously the very first step of every great iPhone app. Make sure you know who the end-user will be and what problem it will solve. But even an unconventional “quirky” idea may become a very successful iPhone app. We are not going to tell you how to generate a great idea. We’d rather tell you how to validate and do some sanity checking of you great idea. Manifest your idea with some key principles that describe the core of your idea. [source: jtribe.com.au] www.MitAPP.com http://twitter.com/MitAPP Prepared by jTribe, 2009
  • 8. 2 The Idea Check “...and it actually could work” The critical question is actually what you want to achieve with your iPhone app. Basically there are two ways to get return on an iPhone app. 1) make a million through AppStore sales 2) use it as a marketing tool to promote another service or product In both cases it is crucial to understand the structure and size of your user-base. In the first case the size will determine the dollar-return you can make with the app. In the second case it will determine the marketing effect. Assuming you want to make a million dollars through AppStore sales it is crucial that you understand the iPhone economics. How many iPhone users are there? How much money can I make in my segment? ... If you don’t plan to become number one in the AppStore in the category you target then don’t expect a return of investment. We highly recommend that you ensure that your idea can enter the top 10 apps in the AppStore. Otherwise, consider it a learning exercise. [source: jtribe.com.au] www.MitAPP.com http://twitter.com/MitAPP Prepared by jTribe, 2009
  • 9. 3 Development “Lets get this baby built” So you are convinced that your idea could fly? Then it’s time to get in to the technical part. Development costs money. Great iPhone development cost even more money. If you are really committed to develop the best possible iPhone app then you should move ahead and engage the development process. However, if you have doubts at this stage then don’t waste your money or effort. The development process could fill a book. Assuming that you are not a professional iPhone developer here is a brief summary: Get your scope right. Prepare your wireframes. Get some quotes from iPhone developers. Make a decision and choose the most awesome developers you can afford. Now let the iPhone developers do their magic and make sure they stick to your initial idea. Find a group of beta tester. Submit your iPhone application to the Apple AppStore. Be prepared to wait a couple of weeks before Apple has approved your app. There are many little things that could go wrong in this step so get some professional help. AND DON’T FORGET YOUR MARKETING [source: jtribe.com.au] www.MitAPP.com http://twitter.com/MitAPP Prepared by jTribe, 2009
  • 10. 4 Life in the AppStore “I just made a million $” Great, you got your app in the AppStore. If you have timed your marketing correctly you should have a huge initial boost of app downloads. Make sure you are going to keep the momentum up. Be wise around any prices changes decisions and consider price elasticity. Monitor your app usage. (e.g. pinchmedia.com) Communicate with your app users. (e.g. shoutmob.com) Use tools and promotion means. Release updates. Keep on top of the curve. If your idea flies then makes sure that you add features users may like. [source: jtribe.com.au] www.MitAPP.com http://twitter.com/MitAPP Prepared by jTribe, 2009
  • 11. Useful Tips to plan • Work in group (if possible) • Search simil works, study the market • Maybe there are already a lot of code developed and free to use... • Agile Tech. • Code is the last thing www.MitAPP.com http://twitter.com/MitAPP
  • 12. Anatomy of an Application • Compiled code ■Your code ■ Frameworks • Nib files ■ UI elements and other objects ■ Details about object relationships • Resources (images, sounds, strings, database, etc.) • Info.plist file (application configuration) • UIKit Framework • Provides standard interface elements www.MitAPP.com http://twitter.com/MitAPP
  • 13. UIKit Framework • Starts your application • Every application has a single instance of UIApplication ■ Singleton design pattern @interface UIApplication + (UIApplication *)sharedApplication @end ■ Orchestrates the lifecycle of an application ■ Dispatches events ■ Manages status bar, application icon badge ■ Rarely subclassed ■ Uses delegation instead www.MitAPP.com http://twitter.com/MitAPP
  • 14. Delegation • Control passed to delegate objects to perform application- specific behavior • Avoids need to subclass complex objects • Many UIKit classes use delegates ■ UIApplication ■ UITableView ■ UITextField www.MitAPP.com http://twitter.com/MitAPP
  • 15. UIApplication Delegate • Xcode project templates have one set up by default • Object you provide that participates in application lifecycle • Can implement various methods which UIApplication will call • Examples: - (void)applicationDidReceiveMemoryWarning:(UIApplication *)application; - (void)applicationWillResignActive:(UIApplication *)application; - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url; - (void)applicationDidFinishLaunching:(UIApplication *)application; - (void)applicationWillTerminate:(UIApplication *)application; www.MitAPP.com http://twitter.com/MitAPP
  • 16. Info.plist file • Property List (often XML), describing your application ■ Icon appearance ■ Status bar style (default, black, hidden) ■ Orientation ■ Uses Wi-fi networking ■ System Requirements • Can edit most properties in Xcode ■ Project > Edit Active Target “Foo” menu item ■ On the properties tab www.MitAPP.com http://twitter.com/MitAPP
  • 17. Model,View, Controller Model • Manages the app data and state • Not concerned with UI or presentation • Often persists somewhere • Same model should be reusable, unchanged in different interfaces www.MitAPP.com http://twitter.com/MitAPP
  • 18. Model,View, Controller View • Present the Model to the user in an appropriate interface • Allows user to manipulate data • Does not store any data ■ (except to cache state) • Easily reusable & configurable to display different data www.MitAPP.com http://twitter.com/MitAPP
  • 19. Model,View, Controller Controller •Intermediary between Model & View •Updates the view when the model changes •Updates the model when the user manipulates the view •Typically where the app logic lives. www.MitAPP.com http://twitter.com/MitAPP
  • 20. Model,View, Controller Controller outlets actions Model Object www.MitAPP.com http://twitter.com/MitAPP
  • 21. Nib Files - Design Time • Helps you design the ʻVʼ in MVC: ■ Layout user interface elements ■ Add controller objects ■ Connect the controller and UI www.MitAPP.com http://twitter.com/MitAPP
  • 22. Nib Loading • At runtime, objects are unarchived ■ Values/settings in Interface Builder are restored ■ Ensures all outlets and actions are connected ■ Order of unarchiving is not defined • If loading the nib (.xib file) automatically creates objects and order is undefined, how do I customize? ■ For example, to displaying initial state www.MitAPP.com http://twitter.com/MitAPP
  • 23. Nib Loading - awakeFromNib • Control point to implement any additional logic after nib loading • Default empty implementation on NSObject • You often implement it in your controller class ■ e.g. to restore previously saved application state • Guaranteed everything has been unarchived from nib, and all connections are made before -awakeFromNib is called - (void)awakeFromNib { // do customization here } www.MitAPP.com http://twitter.com/MitAPP
  • 24. Controls - Events • View objects that allows users to initiate some type of action • Respond to variety of events ■ Touch events ■ touchDown ■ touchDragged (entered, exited, drag inside, drag outside) ■ touchUp (inside, outside) ■ Value changed ■ Editing events ■ editing began ■ editing changed ■ editing ended www.MitAPP.com http://twitter.com/MitAPP
  • 25. How to Build an iPhone App that Doesn't Suck! • Step 1: Decide what to build Principle 1: Know your users. • Step 2: Visit the app store Principle 2: Don't build your app in a bubble • Step 3: Explore Possible solutions Principle 3: Be minimal • Step 4: Sketch Principle 4: Quality through quantity • Step 5: Build a paper prototype Principle 5: Fail early to succeed sooner. [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 26. How to Build an iPhone App that Doesn't Suck! • Step 6: Fire up omnigraffle (or Photoshop) Principle 6: Be pixel-perfect • Step 7: Do It All Again Principle 7: Remember that nothing is precious • Step 8: Okay, You can code finally • Step 9: Beta Test Your App Principle 9: Test Before you submit • Step 10: Release [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 27. Key Points • Talk to users • Explore many designs • Iterate based on user feedback [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 28. www.MitAPP.com http://twitter.com/MitAPP
  • 29. Resources • Main Apple Dev Site: http://developer.apple.com/iphone/ • Community Forum: http://www.iphonedevsdk.com/ • Tips: http://iphonedevelopertips.com/ • Blog: http://iphoneincubator.com/blog/ • StackOverflow: http://stackoverflow.com/ • Italian Sites: iSpazio, iPhoneItalia, MelaMorsicata, MacLounge, etc... • ... search “iphone dev” on Google... • To create video trailers for your app: http://www.vimov.com/isimulate/ www.MitAPP.com http://twitter.com/MitAPP
  • 30. DEMO • DEMO (30’): Create an application www.MitAPP.com http://twitter.com/MitAPP
  • 31. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) With more than 15 million downloads, “Tap Tap Revenge” is by far the most popular game on the iPhone and iPod touch. • Some core principles behind running a succesful software startup don't change: - Build a great team - Strengthen you brand - Work to become more predictable... - ...Without killing creativity and energy - Seek out and listen to advice [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 32. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Build a Great Team - Don't be afraid to be very selective - Passion and integrity are paramount - Be flexible about job descriptions when you're small - As you grow, make sure to diversify [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 33. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Strengthen Your Brand - Invest in the aestetics - Don't compromise "too much" on quality - Use Twitter,YouTube, and other community-driven sites - Piggy-back on Apple's marketing prowess - Store rankings and ratings matter [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 34. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Become More Predictable - Know exactly what needs to go into any given release - Track how long it takes you to get that work done - Get status from your team regularly - Become a conservative when you're getting ready to ship - Code reviews, even if informal - "Blockers" only - Ad hoc Distribution for Betas [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 35. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Encourage Creativity - 20% time - "Skunkworks" (from Wikipedia: “widely used in business, engineering, and technical fields to describe a group within an organization given a high degree of autonomy andunhampered by bureaucracy, tasked with working on advanced or secret projects.”) - Facilitate healty brainstorming - Stay flexible [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 36. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Seek Advice - Listen to your customers (GetSatisfaction, Twitter) - Have coffee with your peers - Pay attention to your current & potential investor [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 37. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Successful iPhone Software Development Practices: What I Learned in School: - If you struggle with a crazy bug, and you start to suspect the compiler, you're wrong, it's not the comiler, it's you What I Learned at Apple: - Actually, it could well be the compiler. What I Learned at Tapolous: - Ok, it's probably not the compiler. - ...but it sure as heck might be some crazy edge case in what is a fantastically rich, but extremely fast-moving, and very new, platform. [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 38. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Blame is Unimportant - Hone you problem-solving skills - You can never be too good at gdb - You can never be too foog at Googling - You can never know too many people - Code defensively - Establish some "best practices" [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 39. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Best Practices - Don't be cute; your new teammate will not appreciate how smart you are nearly as much as you do - Werror was implemented for a reason - Step throug new code, and/or write unit tests - Periodically chech for leaks, smashers, and other misbehavior - For Internet-savvy applications, use a sniffer to verify traffic patterns [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 40. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Best Practices , iPhone-Specific - It's just like Mac OS X, right? Wrong. - Use real devices for testing, regurarly - Offline and bad Edge connections are common use cases [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP
  • 41. From Upstart to Startup to Grownup (Jessica Kahn - Tapoulus) • Wrapping UP - The iTunes App Store is a crazy and fun marketplace - The iPhone OS is a craty and fun platform - You can be indie and be a success - You can build a company and be a succes [Source] Stanford CS193P www.MitAPP.com http://twitter.com/MitAPP