SlideShare a Scribd company logo
+




    Software Development Community
    Mobile Device Programming Subgroup
    Hello World Series – Part I - IOS

               Paul Hancock - 29 April 2012
+
    Agenda

       What do you need to get started?

       Objective C explained in 30 seconds

       Target Considerations: iPad vs. iPhone vs. Universal

       Hello World! … take I
           Adding graphical elements to the main window programmatically


       Hello World! … take II
           Building graphical elements to the main window using WYSIWYG “Interface Builder”


       Hello World! … take III
           Adding graphical elements onto subviews


       Not covered in this presentation:
           Design patterns and concepts required to create non-trivial applications (Delegation, Notifications, Core
            Data, Storyboards, etc.)
           Getting your app on the AppStore and becoming rich
+
    What you’ll need to get started

             Intel-based Mac running OSX

             Development Environment

             Basic knowledge of object oriented programming
              concepts

             Familiarity with event-driven programming models

             Can spell MVC (Model-View-Controller)

             15 minutes of spare time
+
    Development Environment
       IOS SDK / Xcode running on Mac OSX
           Available from the AppStore for Free
           Everything you need, including iPhone/iPad simulators

       Optional:
           IOS Devices
           Developer’s License ($99/year)
               Developer certificate allows signing applications
               Allows developer to download/test/debug apps on actual IOS
                devices
               Provides access to developer resources (help, etc.)
               Allows developer to put app on appstore and get rich
+
    Model-View-Controller

       Every IOS application object should be one of these


           Model Object
             Contains data without any knowledge of the application logic or GUI


           View Object
             Interfaces to the user (buttons, scroll bars, etc.) without any knowledge of how
              the data is organized

           Controller Object
             Manages the application logic. Has knowledge of the Model objects and the
              View objects. Acts as the glue to keeps Model objects and View objects in
              sync.
             Least reusable classes
+
    MVC Design Pattern


                         Sends Message                        Update Data




            View                          Controller                               Model




                        Update the View                Fetch Data needed by View




     Controllers don’t tell Views what to display. Views ask Controllers for what they need
+
    Objective C in 30 seconds
       A very simple language, like C

       Superset of C
           Entry point is main();
           originally implemented as C preprocessor (as was C++)
           Objective C keywords begin with “@”, for example @synthesize

       Adds object-oriented paradigms
           Classes / Objects / Encapsulation / Inheritance / Polymorphism / etc.
           Allows only single inheritance (subclasses have exactly one superclass)
             All objects ultimately derived from NSObject (“NS” stands for Next Step)


       Cocoa Touch Framework (not part of Objective C)
           Rich set of frameworks/libraries to enable rapid and consistent development of IOS applications

       Further Reading:
           Programming in Objective-C (4th Edition) - Stephen G. Kochan
           Objective-C Programming: The Big Nerd Ranch Guide – Aaron Hillegass
+
    Objective C - Object/Method Notation
    Object Method Definition within a Class Implementation

    -(float)calculateAreaOfRectangleWithWidth:(float)x
                                    andHeight:(float)y
    {
        return x*y;
    }


    Method Invocation by an object

               …you might be expecting something like….
     float area;
     area = myObject->calculateAreaOfRectangle(23.7,12.0);
+
    Objective C - Object/Method Notation
    Object Method Definition within a Class Implementation

    -(float)calculateAreaOfRectangleWithWidth:(float)x
                                    andHeight:(float)y
    {
        return x*y;
    }



But no, you do it by sending a message to the object …I mean the receiver….

    float area;
    area = [myObject calculateAreaOfRectangleWithWidth:23.7
                                             andHeight:12.0];

                                                                      Arguments
    Receiver             Selector “calculateAreaOfRectangleWithWidth:andHeight:”
+
    Application Target Considerations
    iPhone? iPhone Retna? iPad? The New iPad?

    Device                           Screen                Graphics
                                     Resolution            Resolution
    iPhone 3Gs and earlier           320x480 pixels
                                                           320 x 480 points
    iPhone 4 and 4s (Retna)          640x960 pixels
    iPad and iPad 2                  768x1024 pixels
                                                           768 x 1024 points
    The New iPad (Retna)             1536x2048 pixels

       iPhone applications will run unmodified on iPads, but potentially with
        degraded (pixelated) appearance (not recommended)
       CoreGraphics based on points, not pixels – vector graphics not impacted
       Xcode allows multiple images to be bundled as resources so that they appear
        sharp on all displays
+
    Real Estate Considerations
   iPhone vs iPad
       Vastly different screen real estate calls for different approach
       iPhones use UINavigationController as the primary drill-down mechanism
       iPads can leverage greater real estate and use UISplitViewController




                                       vs.




    UINavigationController

                                                       UISplitViewController
+
    Additional Resources

       iOS Programming: The Big Nerd Ranch Guide (3rd Edition)
           Aaron Hillegass & Joe Conway
           Very structured and well written explanation of Cocoa architecture and
            approach

       iPad iOS 5 Development Essentials or iPhone iOS 5 Development
        Essentials
           Neil Smyth
           Best how-to guides from soup to nuts for getting an application onto the
            AppStore

       iOS 5 Programming Pushing the Limits: Developing Extraordinary
        Mobile Apps for Apple iPhone, iPad, and iPod Touch
           Rob Napier
           Not a beginner book
And Now….

Let’s fire up Xcode and write some apps!
+
    Hello World 1
    Implementation Summary
       Programmatic approach (no WYSIWYG)

       Created “Empty” project
           AppDelegate Class
           Instantiates the window

       Added Application icons

       Modified AppDelegate to
           Change window background color
           Created a UIButton (declared in .h and initialized in .m)
           Set the size and position of the button
           Set the title to “Press Me”
           Set the action for pressing the button to call sayHello:
+
    Hello World 2
    Implementation Summary
       Implement the main window graphically with Interface Builder

       Created “Empty” project
           AppDelegate Class
           Instantiates the window


       Added application icons

       Modified AppDelegate to
           Comment out the programmatic instantiation of the window
           Declare helloButton (using keyword IBOutlet), declare/implement sayHello action (using keyword IBAction)


       Created a new project file (IOS Interface->Window)
           Created MainWindow.xib
               Added object (cube icon), set class to HelloWorld2AppDelegate (acts as a placeholder until runtime)
               Changed background color, added button, set the title to “Press Me” with 46pt font
           Graphically make connections
               Set File’s Owner Class to UIApplication, set File’s Owner Delegate to HelloWorld2AppDelegate
               Connect helloButton (in AppDelegate) to graphical button object, connect touch up inside action to sayHello (in AppDelegate)


       Set Application Main Interface to MainWindow
+
    Hello World 3
    Implementation Summary
       Implement graphical objects in a view, with a dedicated ViewController rather than
        directly on window

       Created “Single View Application” project
           AppDelegate Class
           ViewController Class
           XIB
           Basic connections made for you

       Added application icons

       Modified ViewController to
           Declare helloButton (using keyword IBOutlet), declare/implement sayHello action (using
            keyword IBAction)

       Edit xib
           Set background color, added button, set the title to “Press Me” with 46pt font
           Connect helloButton (in File’s Owner) to graphical button object, connect touch up inside
            action to sayHello (in File’s Owner)
Ad

More Related Content

What's hot (14)

Beginning Native Android Apps
Beginning Native Android AppsBeginning Native Android Apps
Beginning Native Android Apps
Gil Irizarry
 
Swift
SwiftSwift
Swift
Larry Ball
 
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Gil Irizarry
 
Android deep dive
Android deep diveAndroid deep dive
Android deep dive
AnuSahniNCI
 
Android
AndroidAndroid
Android
Jesus_Aguirre
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
katayoon_bz
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
Techacademy Software
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
Ed Zel
 
Android Development: Build Android App from Scratch
Android Development: Build Android App from ScratchAndroid Development: Build Android App from Scratch
Android Development: Build Android App from Scratch
Taufan Erfiyanto
 
Titanium appcelerator sdk
Titanium appcelerator sdkTitanium appcelerator sdk
Titanium appcelerator sdk
Alessio Ricco
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
Avinash Nandakumar
 
iPhone/iPad Development with Titanium
iPhone/iPad Development with TitaniumiPhone/iPad Development with Titanium
iPhone/iPad Development with Titanium
Axway Appcelerator
 
Best react native animation libraries & ui component of 2022
Best react native animation libraries & ui component of 2022Best react native animation libraries & ui component of 2022
Best react native animation libraries & ui component of 2022
Katy Slemon
 
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CAAppcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Jeff Haynie
 
Beginning Native Android Apps
Beginning Native Android AppsBeginning Native Android Apps
Beginning Native Android Apps
Gil Irizarry
 
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Make Cross-platform Mobile Apps Quickly - SIGGRAPH 2014
Gil Irizarry
 
Android deep dive
Android deep diveAndroid deep dive
Android deep dive
AnuSahniNCI
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
katayoon_bz
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
Ed Zel
 
Android Development: Build Android App from Scratch
Android Development: Build Android App from ScratchAndroid Development: Build Android App from Scratch
Android Development: Build Android App from Scratch
Taufan Erfiyanto
 
Titanium appcelerator sdk
Titanium appcelerator sdkTitanium appcelerator sdk
Titanium appcelerator sdk
Alessio Ricco
 
iPhone/iPad Development with Titanium
iPhone/iPad Development with TitaniumiPhone/iPad Development with Titanium
iPhone/iPad Development with Titanium
Axway Appcelerator
 
Best react native animation libraries & ui component of 2022
Best react native animation libraries & ui component of 2022Best react native animation libraries & ui component of 2022
Best react native animation libraries & ui component of 2022
Katy Slemon
 
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CAAppcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Jeff Haynie
 

Viewers also liked (20)

8 uji normalitas data
8 uji normalitas data8 uji normalitas data
8 uji normalitas data
Mukhamad Fathoni
 
Welcome to Rails Girls Buenos Aires
Welcome to Rails Girls Buenos AiresWelcome to Rails Girls Buenos Aires
Welcome to Rails Girls Buenos Aires
Anni Rautio
 
Informe empleados
Informe empleadosInforme empleados
Informe empleados
kode99
 
2013 04 15 hogans assessment results luca cococcia VALUES
2013 04 15 hogans assessment results luca cococcia VALUES2013 04 15 hogans assessment results luca cococcia VALUES
2013 04 15 hogans assessment results luca cococcia VALUES
lucacococcia
 
Дастер
ДастерДастер
Дастер
Al Maks
 
New Models of Content Creation and Scholarship at the Intersection of Library...
New Models of Content Creation and Scholarship at the Intersection of Library...New Models of Content Creation and Scholarship at the Intersection of Library...
New Models of Content Creation and Scholarship at the Intersection of Library...
Mike Nutt
 
Business Writing Instant Quiz
Business Writing Instant QuizBusiness Writing Instant Quiz
Business Writing Instant Quiz
brainpowertraining
 
Iab social media_infographic
Iab social media_infographicIab social media_infographic
Iab social media_infographic
Nadya Rosalia
 
The srimad bhagavad sacredness of cow
The srimad bhagavad   sacredness of cowThe srimad bhagavad   sacredness of cow
The srimad bhagavad sacredness of cow
BASKARAN P
 
Russian and Ukrainian banks activities in social media analytic review
Russian and Ukrainian banks activities in social media analytic reviewRussian and Ukrainian banks activities in social media analytic review
Russian and Ukrainian banks activities in social media analytic review
SPN Communications Ukraine
 
Untrash summit presentation 1
Untrash summit presentation 1Untrash summit presentation 1
Untrash summit presentation 1
scswa
 
Sandy. unsung heroes of hurricane. lyceum 3
Sandy. unsung heroes of hurricane. lyceum 3Sandy. unsung heroes of hurricane. lyceum 3
Sandy. unsung heroes of hurricane. lyceum 3
Irina Saranceva
 
miss the forest: bringing together multiple taxonomies
miss the forest: bringing together multiple taxonomiesmiss the forest: bringing together multiple taxonomies
miss the forest: bringing together multiple taxonomies
Heimo Rainer
 
Final presentation
Final presentationFinal presentation
Final presentation
Ana Arballo
 
Confidentiality training
Confidentiality trainingConfidentiality training
Confidentiality training
baileesna
 
Creating executable JAR from Eclipse IDE
Creating executable JAR from Eclipse IDECreating executable JAR from Eclipse IDE
Creating executable JAR from Eclipse IDE
Nag Arvind Gudiseva
 
PPT BS
PPT BS PPT BS
PPT BS
Md. Niazur Rahman
 
Question 4- Cryotherapy
Question 4- CryotherapyQuestion 4- Cryotherapy
Question 4- Cryotherapy
Kelly Tay
 
Tceq 2011
Tceq 2011Tceq 2011
Tceq 2011
scswa
 
Welcome to Rails Girls Buenos Aires
Welcome to Rails Girls Buenos AiresWelcome to Rails Girls Buenos Aires
Welcome to Rails Girls Buenos Aires
Anni Rautio
 
Informe empleados
Informe empleadosInforme empleados
Informe empleados
kode99
 
2013 04 15 hogans assessment results luca cococcia VALUES
2013 04 15 hogans assessment results luca cococcia VALUES2013 04 15 hogans assessment results luca cococcia VALUES
2013 04 15 hogans assessment results luca cococcia VALUES
lucacococcia
 
Дастер
ДастерДастер
Дастер
Al Maks
 
New Models of Content Creation and Scholarship at the Intersection of Library...
New Models of Content Creation and Scholarship at the Intersection of Library...New Models of Content Creation and Scholarship at the Intersection of Library...
New Models of Content Creation and Scholarship at the Intersection of Library...
Mike Nutt
 
Iab social media_infographic
Iab social media_infographicIab social media_infographic
Iab social media_infographic
Nadya Rosalia
 
The srimad bhagavad sacredness of cow
The srimad bhagavad   sacredness of cowThe srimad bhagavad   sacredness of cow
The srimad bhagavad sacredness of cow
BASKARAN P
 
Russian and Ukrainian banks activities in social media analytic review
Russian and Ukrainian banks activities in social media analytic reviewRussian and Ukrainian banks activities in social media analytic review
Russian and Ukrainian banks activities in social media analytic review
SPN Communications Ukraine
 
Untrash summit presentation 1
Untrash summit presentation 1Untrash summit presentation 1
Untrash summit presentation 1
scswa
 
Sandy. unsung heroes of hurricane. lyceum 3
Sandy. unsung heroes of hurricane. lyceum 3Sandy. unsung heroes of hurricane. lyceum 3
Sandy. unsung heroes of hurricane. lyceum 3
Irina Saranceva
 
miss the forest: bringing together multiple taxonomies
miss the forest: bringing together multiple taxonomiesmiss the forest: bringing together multiple taxonomies
miss the forest: bringing together multiple taxonomies
Heimo Rainer
 
Final presentation
Final presentationFinal presentation
Final presentation
Ana Arballo
 
Confidentiality training
Confidentiality trainingConfidentiality training
Confidentiality training
baileesna
 
Creating executable JAR from Eclipse IDE
Creating executable JAR from Eclipse IDECreating executable JAR from Eclipse IDE
Creating executable JAR from Eclipse IDE
Nag Arvind Gudiseva
 
Question 4- Cryotherapy
Question 4- CryotherapyQuestion 4- Cryotherapy
Question 4- Cryotherapy
Kelly Tay
 
Tceq 2011
Tceq 2011Tceq 2011
Tceq 2011
scswa
 
Ad

Similar to Hello world ios v1 (20)

Code camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una DalyCode camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una Daly
Una Daly
 
Training in iOS Development
Training in iOS DevelopmentTraining in iOS Development
Training in iOS Development
Arcadian Learning
 
iOS Development Survival Guide for the .NET Guy
iOS Development Survival Guide for the .NET GuyiOS Development Survival Guide for the .NET Guy
iOS Development Survival Guide for the .NET Guy
Nick Landry
 
iPhone SDK dev sharing - the very basics
iPhone SDK dev sharing - the very basicsiPhone SDK dev sharing - the very basics
iPhone SDK dev sharing - the very basics
kenshin03
 
201010 SPLASH Tutorial
201010 SPLASH Tutorial201010 SPLASH Tutorial
201010 SPLASH Tutorial
Javier Gonzalez-Sanchez
 
iPhone application development training day 1
iPhone application development training day 1iPhone application development training day 1
iPhone application development training day 1
Shyamala Prayaga
 
Basic Introduction Flutter Framework.pdf
Basic Introduction Flutter Framework.pdfBasic Introduction Flutter Framework.pdf
Basic Introduction Flutter Framework.pdf
PhanithLIM
 
Introduction of Xcode
Introduction of XcodeIntroduction of Xcode
Introduction of Xcode
Dhaval Kaneria
 
New to native? Getting Started With iOS Development
New to native?   Getting Started With iOS DevelopmentNew to native?   Getting Started With iOS Development
New to native? Getting Started With iOS Development
Geoffrey Goetz
 
ID-ObjectiveConference 2012 - Introduction to iOS Development
ID-ObjectiveConference 2012 - Introduction to iOS DevelopmentID-ObjectiveConference 2012 - Introduction to iOS Development
ID-ObjectiveConference 2012 - Introduction to iOS Development
Andri Yadi
 
iOS App Development with Storyboard
iOS App Development with StoryboardiOS App Development with Storyboard
iOS App Development with Storyboard
Babul Mirdha
 
iOS Development - Offline Class for Jasakomer
iOS Development - Offline Class for JasakomeriOS Development - Offline Class for Jasakomer
iOS Development - Offline Class for Jasakomer
Andri Yadi
 
Vb lecture
Vb lectureVb lecture
Vb lecture
alldesign
 
iPhone Developer_ankush
iPhone Developer_ankushiPhone Developer_ankush
iPhone Developer_ankush
ankush Ankush
 
Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...
Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...
Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...
giloulaiz
 
Mobile App Institute
Mobile App InstituteMobile App Institute
Mobile App Institute
Bill Bellows
 
Flash Builder and Flex Future - Multiscreen Development
Flash Builder and Flex Future - Multiscreen DevelopmentFlash Builder and Flex Future - Multiscreen Development
Flash Builder and Flex Future - Multiscreen Development
Ryan Stewart
 
Lecture1
Lecture1Lecture1
Lecture1
redwan1795
 
Introduction to Flex Hero for Mobile Devices
Introduction to Flex Hero for Mobile DevicesIntroduction to Flex Hero for Mobile Devices
Introduction to Flex Hero for Mobile Devices
Ryan Stewart
 
Shankar
ShankarShankar
Shankar
Shankar P
 
Code camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una DalyCode camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una Daly
Una Daly
 
iOS Development Survival Guide for the .NET Guy
iOS Development Survival Guide for the .NET GuyiOS Development Survival Guide for the .NET Guy
iOS Development Survival Guide for the .NET Guy
Nick Landry
 
iPhone SDK dev sharing - the very basics
iPhone SDK dev sharing - the very basicsiPhone SDK dev sharing - the very basics
iPhone SDK dev sharing - the very basics
kenshin03
 
iPhone application development training day 1
iPhone application development training day 1iPhone application development training day 1
iPhone application development training day 1
Shyamala Prayaga
 
Basic Introduction Flutter Framework.pdf
Basic Introduction Flutter Framework.pdfBasic Introduction Flutter Framework.pdf
Basic Introduction Flutter Framework.pdf
PhanithLIM
 
New to native? Getting Started With iOS Development
New to native?   Getting Started With iOS DevelopmentNew to native?   Getting Started With iOS Development
New to native? Getting Started With iOS Development
Geoffrey Goetz
 
ID-ObjectiveConference 2012 - Introduction to iOS Development
ID-ObjectiveConference 2012 - Introduction to iOS DevelopmentID-ObjectiveConference 2012 - Introduction to iOS Development
ID-ObjectiveConference 2012 - Introduction to iOS Development
Andri Yadi
 
iOS App Development with Storyboard
iOS App Development with StoryboardiOS App Development with Storyboard
iOS App Development with Storyboard
Babul Mirdha
 
iOS Development - Offline Class for Jasakomer
iOS Development - Offline Class for JasakomeriOS Development - Offline Class for Jasakomer
iOS Development - Offline Class for Jasakomer
Andri Yadi
 
iPhone Developer_ankush
iPhone Developer_ankushiPhone Developer_ankush
iPhone Developer_ankush
ankush Ankush
 
Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...
Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...
Test Bank for Java How to Program Late Objects 10th Edition Deitel 0132575655...
giloulaiz
 
Mobile App Institute
Mobile App InstituteMobile App Institute
Mobile App Institute
Bill Bellows
 
Flash Builder and Flex Future - Multiscreen Development
Flash Builder and Flex Future - Multiscreen DevelopmentFlash Builder and Flex Future - Multiscreen Development
Flash Builder and Flex Future - Multiscreen Development
Ryan Stewart
 
Introduction to Flex Hero for Mobile Devices
Introduction to Flex Hero for Mobile DevicesIntroduction to Flex Hero for Mobile Devices
Introduction to Flex Hero for Mobile Devices
Ryan Stewart
 
Ad

Recently uploaded (20)

Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 

Hello world ios v1

  • 1. + Software Development Community Mobile Device Programming Subgroup Hello World Series – Part I - IOS Paul Hancock - 29 April 2012
  • 2. + Agenda  What do you need to get started?  Objective C explained in 30 seconds  Target Considerations: iPad vs. iPhone vs. Universal  Hello World! … take I  Adding graphical elements to the main window programmatically  Hello World! … take II  Building graphical elements to the main window using WYSIWYG “Interface Builder”  Hello World! … take III  Adding graphical elements onto subviews  Not covered in this presentation:  Design patterns and concepts required to create non-trivial applications (Delegation, Notifications, Core Data, Storyboards, etc.)  Getting your app on the AppStore and becoming rich
  • 3. + What you’ll need to get started  Intel-based Mac running OSX  Development Environment  Basic knowledge of object oriented programming concepts  Familiarity with event-driven programming models  Can spell MVC (Model-View-Controller)  15 minutes of spare time
  • 4. + Development Environment  IOS SDK / Xcode running on Mac OSX  Available from the AppStore for Free  Everything you need, including iPhone/iPad simulators  Optional:  IOS Devices  Developer’s License ($99/year)  Developer certificate allows signing applications  Allows developer to download/test/debug apps on actual IOS devices  Provides access to developer resources (help, etc.)  Allows developer to put app on appstore and get rich
  • 5. + Model-View-Controller  Every IOS application object should be one of these  Model Object  Contains data without any knowledge of the application logic or GUI  View Object  Interfaces to the user (buttons, scroll bars, etc.) without any knowledge of how the data is organized  Controller Object  Manages the application logic. Has knowledge of the Model objects and the View objects. Acts as the glue to keeps Model objects and View objects in sync.  Least reusable classes
  • 6. + MVC Design Pattern Sends Message Update Data View Controller Model Update the View Fetch Data needed by View Controllers don’t tell Views what to display. Views ask Controllers for what they need
  • 7. + Objective C in 30 seconds  A very simple language, like C  Superset of C  Entry point is main();  originally implemented as C preprocessor (as was C++)  Objective C keywords begin with “@”, for example @synthesize  Adds object-oriented paradigms  Classes / Objects / Encapsulation / Inheritance / Polymorphism / etc.  Allows only single inheritance (subclasses have exactly one superclass)  All objects ultimately derived from NSObject (“NS” stands for Next Step)  Cocoa Touch Framework (not part of Objective C)  Rich set of frameworks/libraries to enable rapid and consistent development of IOS applications  Further Reading:  Programming in Objective-C (4th Edition) - Stephen G. Kochan  Objective-C Programming: The Big Nerd Ranch Guide – Aaron Hillegass
  • 8. + Objective C - Object/Method Notation Object Method Definition within a Class Implementation -(float)calculateAreaOfRectangleWithWidth:(float)x andHeight:(float)y { return x*y; } Method Invocation by an object …you might be expecting something like…. float area; area = myObject->calculateAreaOfRectangle(23.7,12.0);
  • 9. + Objective C - Object/Method Notation Object Method Definition within a Class Implementation -(float)calculateAreaOfRectangleWithWidth:(float)x andHeight:(float)y { return x*y; } But no, you do it by sending a message to the object …I mean the receiver…. float area; area = [myObject calculateAreaOfRectangleWithWidth:23.7 andHeight:12.0]; Arguments Receiver Selector “calculateAreaOfRectangleWithWidth:andHeight:”
  • 10. + Application Target Considerations iPhone? iPhone Retna? iPad? The New iPad? Device Screen Graphics Resolution Resolution iPhone 3Gs and earlier 320x480 pixels 320 x 480 points iPhone 4 and 4s (Retna) 640x960 pixels iPad and iPad 2 768x1024 pixels 768 x 1024 points The New iPad (Retna) 1536x2048 pixels  iPhone applications will run unmodified on iPads, but potentially with degraded (pixelated) appearance (not recommended)  CoreGraphics based on points, not pixels – vector graphics not impacted  Xcode allows multiple images to be bundled as resources so that they appear sharp on all displays
  • 11. + Real Estate Considerations  iPhone vs iPad  Vastly different screen real estate calls for different approach  iPhones use UINavigationController as the primary drill-down mechanism  iPads can leverage greater real estate and use UISplitViewController vs. UINavigationController UISplitViewController
  • 12. + Additional Resources  iOS Programming: The Big Nerd Ranch Guide (3rd Edition)  Aaron Hillegass & Joe Conway  Very structured and well written explanation of Cocoa architecture and approach  iPad iOS 5 Development Essentials or iPhone iOS 5 Development Essentials  Neil Smyth  Best how-to guides from soup to nuts for getting an application onto the AppStore  iOS 5 Programming Pushing the Limits: Developing Extraordinary Mobile Apps for Apple iPhone, iPad, and iPod Touch  Rob Napier  Not a beginner book
  • 13. And Now…. Let’s fire up Xcode and write some apps!
  • 14. + Hello World 1 Implementation Summary  Programmatic approach (no WYSIWYG)  Created “Empty” project  AppDelegate Class  Instantiates the window  Added Application icons  Modified AppDelegate to  Change window background color  Created a UIButton (declared in .h and initialized in .m)  Set the size and position of the button  Set the title to “Press Me”  Set the action for pressing the button to call sayHello:
  • 15. + Hello World 2 Implementation Summary  Implement the main window graphically with Interface Builder  Created “Empty” project  AppDelegate Class  Instantiates the window  Added application icons  Modified AppDelegate to  Comment out the programmatic instantiation of the window  Declare helloButton (using keyword IBOutlet), declare/implement sayHello action (using keyword IBAction)  Created a new project file (IOS Interface->Window)  Created MainWindow.xib  Added object (cube icon), set class to HelloWorld2AppDelegate (acts as a placeholder until runtime)  Changed background color, added button, set the title to “Press Me” with 46pt font  Graphically make connections  Set File’s Owner Class to UIApplication, set File’s Owner Delegate to HelloWorld2AppDelegate  Connect helloButton (in AppDelegate) to graphical button object, connect touch up inside action to sayHello (in AppDelegate)  Set Application Main Interface to MainWindow
  • 16. + Hello World 3 Implementation Summary  Implement graphical objects in a view, with a dedicated ViewController rather than directly on window  Created “Single View Application” project  AppDelegate Class  ViewController Class  XIB  Basic connections made for you  Added application icons  Modified ViewController to  Declare helloButton (using keyword IBOutlet), declare/implement sayHello action (using keyword IBAction)  Edit xib  Set background color, added button, set the title to “Press Me” with 46pt font  Connect helloButton (in File’s Owner) to graphical button object, connect touch up inside action to sayHello (in File’s Owner)