SlideShare ist ein Scribd-Unternehmen logo
1 von 52
1/21/2013 App Trainers
App Trainers
1/21/2013
Why Apple !!
● Hardware
● Software
● Synchronization
● Marketing Acceptance, ex: naming criteria, story of devices.
● Limit Products , improve quality , everything under control.
● Compatible with you stuff – Video Example.
● Running Windows :D
● Security
1/21/2013 App Trainers
Apple Inc. iPhone History
● First iPhone – 2007
● iPhone 3G – June 9,2008
● Successor of iPhone 3G, 3Gs, 2009
● The iPhone 4 – June 7, 2010 – Retina Display
● The iPhone 4 s – October 7, 2011 – Retina Display
1/21/2013 App Trainers
Other Apple Products
● Macbook Pro
● iMac
● Macbook Air
● Mac Mini
● iPad
● iPod
● Apple TV
1/21/2013 App Trainers
iTunes
● Is a computer program used for playing, downloading,
saving, and organizing digital music and video files on
desktop or laptop personal computers, It can also manage
the  contents  on  iPod,  iPhone,  iPod  Touch,  …  etc.
● Introduced By Apple Inc. on January 9, 2001
1/21/2013 App Trainers
iOS
● History
● Current Versions
1/21/2013 App Trainers
IOS Features Timeline
● iOS 1.x: initial OS release ● iOS 2.x: second major OS
release:
● This version of the OS introduces the App
Store, making third-party applications
available to the iPhone and iPod Touch.
● iOS 4.x: fourth major OS
release
● Multitasking
● iOS 3.x: third major OS release
● Copy & Paste – MMS
1/21/2013 App Trainers
Apple App Store
The Apple App Store is a digital
application distribution platform
for iOS developed and maintained
by Apple Inc. The service allows
users to browse and download
applications from the iTunes Store
that were developed with the iOS
SDK published through Apple
Inc.
● History since 2008
● Design
● App Store Account
● New iOS 6 changes
1/21/2013 App Trainers
iBook , Newsstand
● What iBook Store ?
● Whats the newsstand ?
● Interactive magazines
● Video URLs
1/21/2013 App Trainers
iTunes U :P
● E-Learning Revolution.
● Simple.
● Anytime.
● Anywhere.
● Live Example.
1/21/2013 App Trainers
App Store Account == iTunes Account
● Apps and Regions.
● Apps availabilities.
● One account one updates.
● iTunes sync and backups.
● Payment Account.
● More than device case advantage.
1/21/2013 App Trainers
iOS JailBreak
● What is that ?!
● Why to do that ?
● Cracked Applications.
● Ethical and Legal Overview.
● SBSettings
● Cydia Store
● Development
1/21/2013 App Trainers
iCloud
● Nothing Here , all at Cloud :)
1/21/2013 App Trainers
Siri
1/21/2013 App Trainers
Example
1/21/2013 App Trainers
iOS VS. Android
● Security
● Polices
● User Privacy
● Performance
● Development Time
1/21/2013 App Trainers
Build Cool Apps
● Easy to build even very complex applications.
● Results lives in your pocket.
● Very Easy to distribute at app store , even sometimes no
need for marketing :D.
● Developer Account
1/21/2013 App Trainers
Mobile Sense
● How to think in the mobile way ?
● Make you innovation portable.
● User Experience.
● Usability.
1/21/2013 App Trainers
What do you need to Start ?
● Have experience with OOP – Object Oriented
Programming.
● Mac device.
● iPhone device.
● Developer Account, costs 99 $.
● At least know what is iPhone :D.
1/21/2013 App Trainers
App Store Revenue Methods
● Free with Ads.
● Paid – For Premium Apps.
● Free With In App Purchases.
1/21/2013 App Trainers
Object-Oriented Programming
● An approach to application development makes programs
more intuitive to design, faster to develop, more amenable to
modification, and easier to understand.
● Most object-oriented development environments consist of at
least three parts:
– A library of objects
– A set of development tools
– An object-oriented programming language and support
library
1/21/2013 App Trainers
OOP with Objective-C
● The Objective-C language is a programming language
designed to enable sophisticated object-oriented programming.
● Objective-C is defined as a small but powerful set of
extensions to the standard ANSI C language. Its additions to C
are mostly based on Smalltalk, one of the first object-oriented
programming languages.
● Objective-C is designed to give C full object-oriented
programming capabilities and to do so in a simple and
straightforward way.
1/21/2013 App Trainers
OOP with Objective-C
● The Objective-C language is a programming language
designed to enable sophisticated object-oriented programming.
● Objective-C is defined as a small but powerful set of
extensions to the standard ANSI C language. Its additions to C
are mostly based on Smalltalk, one of the first object-oriented
programming languages.
● Objective-C is designed to give C full object-oriented
programming capabilities and to do so in a simple and
straightforward way.
1/21/2013 App Trainers
Why Objective-C?
● it’s  an  object-oriented language.
● The  kind  of  functionality  that’s  packaged  in  the  Cocoa  frameworks  
can only be delivered through object-oriented techniques.
● Because Objective-C is an extension of standard ANSI C, existing C
programs can be adapted to use the software frameworks without
losing any of the work that went into their original development.
● You get all the benefits of C when working within Objective-C. You
can choose when to do something in an object-oriented way (define
a new class, for example) and when to stick to procedural
programming techniques (define a structure and some functions
instead of a class).
1/21/2013 App Trainers
Why Objective-C?
● Objective-C is a fundamentally simple language.
● Small.
● Unambiguous.
● Easy to learn.
● A well-organized language like Objective-C can make becoming a
proficient object-oriented programmer that much less difficult.
1/21/2013 App Trainers
Why Objective-C?
● Compared to other object-oriented languages based on C,
Objective-C is very dynamic. The compiler preserves a great
deal of information about the objects themselves for use at
runtime. Decisions that otherwise might be made at compile
time can be postponed until the program is running.
Dynamism gives Objective-C programs unusual flexibility and
power.
1/21/2013 App Trainers
Continue
● As  humans,  we’re  constantly  faced  with  myriad  facts  and  
impressions that we must make sense of.
● To do so, we must abstract underlying structure away from
surface details and discover the fundamental relations at work.
● Abstractions reveal causes and effects, expose patterns and
frameworks,  and  separate  what’s  important  from  what’s  not.
● Object orientation provides an abstraction of the data on which
you operate; moreover, it provides a concrete grouping
between the data and the operations you can perform with the
data—in effect giving the data behavior.
1/21/2013 App Trainers
Data and Operations
● Programming languages have traditionally divided the world into two
parts—data and operations on data. Data is static and immutable, except as
the operations may change it. The procedures and functions that operate on
data  have  no  lasting  state  of  their  own;;  they’re  useful  only  in  their  ability  to  
affect data.
● With  a  procedural  programming  language  like  C,  that’s  about  all  there  is  to  
it. The language may offer various kinds of support for organizing data and
functions,  but  it  won’t  divide  the  world  any  differently.  Functions  and  data  
structures are the basic elements of design.
● Object-oriented  programming  doesn’t  so  much  dispute  this  view  of  the  
world as restructure it at a higher level. It groups operations and data into
modular units called objects and lets you combine objects into structured
networks to form a complete program. In an object-oriented programming
language, objects and object interactions are the basic elements of design.
1/21/2013 App Trainers
Data and Operations
● Bottle:Combine state (how full the bottle is,
whether  or  not  it’s  open,  how  warm  its  
contents are) with behavior (the ability to
dispense its contents at various flow rates, to
be opened or closed, to withstand high or low
temperatures).
1/21/2013 App Trainers
Interface and Implementation
1/21/2013 App Trainers
Interface and Implementation
● To invent programs, you need to be able to capture
abstractions  and  express  them  in  the  program  design.  It’s  the  
job of a programming language to help you do this.
● In the Watch Example :Looking at such a unit from the inside,
as  the  implementer,  you’d  be  concerned  with  what  it’s  
composed of and how it works. Looking at it from the outside,
as  the  user,  you’re  concerned  only  with  what  it  is  and  what  it  
does. You can look past the details and think solely in terms of
the role that the unit plays at a higher level.
1/21/2013 App Trainers
Classes
● A program can have more than one object of the same kind. The program that
models water usage, for example, might have several faucets and pipes and perhaps
a handful of appliances and users. Objects of the same kind are said to be members
of the same class. All members of a class are able to perform the same methods and
have matching sets of instance variables. They also share a common definition;
each kind of object is defined just once.
● In this, objects are similar to C structures. Declaring a structure defines a type. For
example, the declaration.
● struct key {
● char *word;
● int count;
● };
1/21/2013 App Trainers
Classes
● Defines the struct key type. Once defined, the structure name
can be used to produce any number of instances of the type:
● struct key a, b, c, d;
● struct key *p = malloc(sizeof(struct key) * MAXITEMS);
1/21/2013 App Trainers
Classes
● The  declaration  is  a  template  for  a  kind  of  structure,  but  it  doesn’t  
create a structure that the program can use. It takes another step to
allocate memory for an actual structure of that type, a step that can
be repeated any number of times.
● Similarly, defining an object creates a template for a kind of object.
It defines a class of objects. The template can be used to produce
any number of similar objects—instances of the class. For example,
there would be a single definition of the Faucet class. Using this
definition, a program could allocate as many Faucet instances as it
needed.
1/21/2013 App Trainers
Classes
● A class definition is like a structure definition in that it lays out an
arrangement of data elements (instance variables) that become part
of every instance. Each instance has memory allocated for its own
set of instance variables, which store values particular to the
instance.
● However, a class definition differs from a structure declaration in
that it also defines methods that specify the behavior of class
members. Every instance is characterized by its access to the
methods defined for the class. Two objects with equivalent data
structures but different methods would not belong to the same class.
1/21/2013 App Trainers
Modularity
● To a C programmer, a module is nothing more
than a file containing source code. Breaking a
large (or even not-so-large) program into
different files is a convenient way of splitting
it into manageable pieces. Each piece can be
worked on independently and compiled alone,
and then integrated with other pieces when the
program is linked.
1/21/2013 App Trainers
Reusability
● A principal goal of object-oriented programming is to make the code
you write as reusable as possible—to have it serve many different
situations and applications—so that you can avoid reimplementing,
even  if  only  slightly  differently,  something  that’s  already  been  done.
● Reusability is influenced by factors such as these:
– How reliable and bug-free the code is.
– How clear the documentation is.
– How simple and straightforward the programming interface is.
– How efficiently the code performs its tasks.
– How full the feature set is.
1/21/2013 App Trainers
Cont.
● Encapsulation.
● Polymorphism.
● Inheritance.
1/21/2013 App Trainers
IOS Structure
● Core OS : Native Language
– OS X Kernel
– Power Management
– Keychain access
– BSD
– Certificates.
– Sockets
– File System
– Security
– Bonjour
1/21/2013 App Trainers
IOS Structure
● Core Services:
– Collections
– Core Locations
– Address Book
– Net Services
– Networking
– Threading
– File Access
– Preferences
– SQLite
1/21/2013 App Trainers
IOS Structure
● Media:
– Core Audio
– JPEG, PNG, TIFF
– OpenAL
– PDF
– Audio
– Core Animation
– Video Playback
– OpenGL ES
1/21/2013 App Trainers
IOS Structure
● Cocoa Touch: Point of Success
– Multi Touch
– Alerts
– Image Picker
– Controls
– Camera
– Map Kit
– Web View
1/21/2013 App Trainers
Platform Components
● Tools : Xcode 4 , Instruments
● Language : Objective C
● Frameworks : Such as Map Kit.
● Design Strategies : MVC
1/21/2013 App Trainers
MVC
● Divide Objects in your programs in three
“Camps”
● Model
● Controller
● View
1/21/2013 App Trainers
Model
● What your application is (not how your
application displayed)
● Example
1/21/2013 App Trainers
Controller
● How you model is presented in the user
interface (UI logic).
● Example
1/21/2013 App Trainers
View
● The controller minions.
● Bring apple controls
● Controller connected with view in order to
perform controls action and view behaviors.
1/21/2013 App Trainers
MVC – Relations
● “Controller”  can  always  access  “Model”.
● “Controller”  relates  to  “View”  via  “Outlet”
● “View”  cannot  access  the  application  “Model”  
and vice versa.
1/21/2013 App Trainers
Objective-C Syntax
● Website URL to learn the Syntax of Objective-
C
1/21/2013 App Trainers
Examples
● App Store Apps
● Facebook
● Twitter
● Path
● Angry Birds <3
● Skype
● Amazing Alex :D
● Limbo , :O
1/21/2013 App Trainers
Questions
1/21/2013 App Trainers
Thank You

Weitere ähnliche Inhalte

Was ist angesagt?

Ndu06 typesof language
Ndu06 typesof languageNdu06 typesof language
Ndu06 typesof languagenicky_walters
 
Top 10 programming languages
Top 10 programming languagesTop 10 programming languages
Top 10 programming languagesAman Kumar
 
Programming languages and concepts by vivek parihar
Programming languages and concepts by vivek pariharProgramming languages and concepts by vivek parihar
Programming languages and concepts by vivek pariharVivek Parihar
 
Computer Programming Overview
Computer Programming OverviewComputer Programming Overview
Computer Programming Overviewagorolabs
 
PROGRAMMING LANGUAGES
PROGRAMMING LANGUAGESPROGRAMMING LANGUAGES
PROGRAMMING LANGUAGESABHINAV SINGH
 
Programming Languages
Programming Languages Programming Languages
Programming Languages knowledge1995
 
So you want to be a programmer
So you want to be a programmerSo you want to be a programmer
So you want to be a programmerBusayo Oyebisi
 
Chapter 3 what is programming
Chapter 3   what is programmingChapter 3   what is programming
Chapter 3 what is programmingPro Guide
 
Ndu06 typesof language
Ndu06 typesof languageNdu06 typesof language
Ndu06 typesof languagenicky_walters
 
Programming languages
Programming languagesProgramming languages
Programming languagesSimon Mui
 
Program development cyle
Program development cyleProgram development cyle
Program development cyleeShikshak
 
Programming languages
Programming languagesProgramming languages
Programming languagesMuntasirMuhit
 
Programing languages
Programing languagesPrograming languages
Programing languagesDanyal Ahmad
 
Programming assignment-help at myassignmenthelp.net
Programming assignment-help at myassignmenthelp.netProgramming assignment-help at myassignmenthelp.net
Programming assignment-help at myassignmenthelp.netwww.myassignmenthelp.net
 
Lua - Programming Language
Lua - Programming LanguageLua - Programming Language
Lua - Programming LanguageVarun Sharma
 
Programming language
Programming languageProgramming language
Programming languageShuja Qais
 
Lect 1. introduction to programming languages
Lect 1. introduction to programming languagesLect 1. introduction to programming languages
Lect 1. introduction to programming languagesVarun Garg
 
The Ring programming language version 1.3 book - Part 4 of 88
The Ring programming language version 1.3 book - Part 4 of 88The Ring programming language version 1.3 book - Part 4 of 88
The Ring programming language version 1.3 book - Part 4 of 88Mahmoud Samir Fayed
 

Was ist angesagt? (20)

Ndu06 typesof language
Ndu06 typesof languageNdu06 typesof language
Ndu06 typesof language
 
Top 10 programming languages
Top 10 programming languagesTop 10 programming languages
Top 10 programming languages
 
Programming languages and concepts by vivek parihar
Programming languages and concepts by vivek pariharProgramming languages and concepts by vivek parihar
Programming languages and concepts by vivek parihar
 
PROGRAMMING AND LANGUAGES
PROGRAMMING AND LANGUAGES  PROGRAMMING AND LANGUAGES
PROGRAMMING AND LANGUAGES
 
Computer Programming Overview
Computer Programming OverviewComputer Programming Overview
Computer Programming Overview
 
PROGRAMMING LANGUAGES
PROGRAMMING LANGUAGESPROGRAMMING LANGUAGES
PROGRAMMING LANGUAGES
 
Programming Languages
Programming Languages Programming Languages
Programming Languages
 
So you want to be a programmer
So you want to be a programmerSo you want to be a programmer
So you want to be a programmer
 
Chapter 3 what is programming
Chapter 3   what is programmingChapter 3   what is programming
Chapter 3 what is programming
 
Ndu06 typesof language
Ndu06 typesof languageNdu06 typesof language
Ndu06 typesof language
 
Programming languages
Programming languagesProgramming languages
Programming languages
 
Program development cyle
Program development cyleProgram development cyle
Program development cyle
 
Programming languages
Programming languagesProgramming languages
Programming languages
 
Programing languages
Programing languagesPrograming languages
Programing languages
 
Programming assignment-help at myassignmenthelp.net
Programming assignment-help at myassignmenthelp.netProgramming assignment-help at myassignmenthelp.net
Programming assignment-help at myassignmenthelp.net
 
Lua - Programming Language
Lua - Programming LanguageLua - Programming Language
Lua - Programming Language
 
Programming language
Programming languageProgramming language
Programming language
 
Lect 1. introduction to programming languages
Lect 1. introduction to programming languagesLect 1. introduction to programming languages
Lect 1. introduction to programming languages
 
The Ring programming language version 1.3 book - Part 4 of 88
The Ring programming language version 1.3 book - Part 4 of 88The Ring programming language version 1.3 book - Part 4 of 88
The Ring programming language version 1.3 book - Part 4 of 88
 
Building your first webpage
Building your first webpageBuilding your first webpage
Building your first webpage
 

Andere mochten auch

Metrics template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Metrics template for LavaCon "Creating a Content Strategy Ecosystem" workshopMetrics template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Metrics template for LavaCon "Creating a Content Strategy Ecosystem" workshopAndrea L. Ames
 
4. Aas csisa alignment workshop 6-7 may'13 by mokarram
4. Aas csisa alignment workshop 6-7 may'13 by mokarram4. Aas csisa alignment workshop 6-7 may'13 by mokarram
4. Aas csisa alignment workshop 6-7 may'13 by mokarramAASBD
 
Analysis template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Analysis template for LavaCon "Creating a Content Strategy Ecosystem" workshopAnalysis template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Analysis template for LavaCon "Creating a Content Strategy Ecosystem" workshopAndrea L. Ames
 
Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...
Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...
Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...Alexandra M. Pickett
 
Mobile Technology to support Learning and Teachning
Mobile Technology to support Learning and TeachningMobile Technology to support Learning and Teachning
Mobile Technology to support Learning and Teachningcawa
 
Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...
Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...
Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...Andrea L. Ames
 

Andere mochten auch (7)

Aya mana dhan de learn and earn
Aya mana dhan de learn and earn Aya mana dhan de learn and earn
Aya mana dhan de learn and earn
 
Metrics template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Metrics template for LavaCon "Creating a Content Strategy Ecosystem" workshopMetrics template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Metrics template for LavaCon "Creating a Content Strategy Ecosystem" workshop
 
4. Aas csisa alignment workshop 6-7 may'13 by mokarram
4. Aas csisa alignment workshop 6-7 may'13 by mokarram4. Aas csisa alignment workshop 6-7 may'13 by mokarram
4. Aas csisa alignment workshop 6-7 may'13 by mokarram
 
Analysis template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Analysis template for LavaCon "Creating a Content Strategy Ecosystem" workshopAnalysis template for LavaCon "Creating a Content Strategy Ecosystem" workshop
Analysis template for LavaCon "Creating a Content Strategy Ecosystem" workshop
 
Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...
Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...
Bryan Alexander's: Emerging technologies for teaching and learning: a tour of...
 
Mobile Technology to support Learning and Teachning
Mobile Technology to support Learning and TeachningMobile Technology to support Learning and Teachning
Mobile Technology to support Learning and Teachning
 
Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...
Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...
Business Case template for LavaCon "Creating a Content Strategy Ecosystem" wo...
 

Ähnlich wie App Trainers

Android Architecture, Environment, and Components.pptx
Android Architecture, Environment, and Components.pptxAndroid Architecture, Environment, and Components.pptx
Android Architecture, Environment, and Components.pptxHasanulFahmi2
 
Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1Manoj Ellappan
 
programacion orientado a abjetos poo
programacion orientado a abjetos pooprogramacion orientado a abjetos poo
programacion orientado a abjetos pooRasec De La Cruz
 
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...DicodingEvent
 
The Concept Of Abstract Data Types
The Concept Of Abstract Data TypesThe Concept Of Abstract Data Types
The Concept Of Abstract Data TypesKaty Allen
 
Programming using C++ - slides.pptx
Programming using C++ - slides.pptxProgramming using C++ - slides.pptx
Programming using C++ - slides.pptxHeadoftheDepartment
 
Building a scalable app factory with Appcelerator Platform
Building a scalable app factory with Appcelerator PlatformBuilding a scalable app factory with Appcelerator Platform
Building a scalable app factory with Appcelerator PlatformAngus Fox
 
Mobile development with Flutter
Mobile development with FlutterMobile development with Flutter
Mobile development with FlutterAwok
 
Notes from Educator Pre-training Briefing 1 - Summary of AfG-toolset 2012-13
Notes from Educator Pre-training Briefing 1  - Summary of AfG-toolset 2012-13Notes from Educator Pre-training Briefing 1  - Summary of AfG-toolset 2012-13
Notes from Educator Pre-training Briefing 1 - Summary of AfG-toolset 2012-13CDI Apps for Good
 
Android development orientation for starters v2
Android development orientation for starters v2Android development orientation for starters v2
Android development orientation for starters v2Joemarie Amparo
 
Services, tools & practices for a software house
Services, tools & practices for a software houseServices, tools & practices for a software house
Services, tools & practices for a software houseParis Apostolopoulos
 
android development training in mumbai
android development training in mumbaiandroid development training in mumbai
android development training in mumbaifaizrashid1995
 
Android Jump Start
Android Jump StartAndroid Jump Start
Android Jump StartConFoo
 
Platform Independent App design
Platform Independent App designPlatform Independent App design
Platform Independent App designArnab Pradhan
 

Ähnlich wie App Trainers (20)

Android Architecture, Environment, and Components.pptx
Android Architecture, Environment, and Components.pptxAndroid Architecture, Environment, and Components.pptx
Android Architecture, Environment, and Components.pptx
 
Oop obj c
Oop obj cOop obj c
Oop obj c
 
Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1Basic iOS Training with SWIFT - Part 1
Basic iOS Training with SWIFT - Part 1
 
programacion orientado a abjetos poo
programacion orientado a abjetos pooprogramacion orientado a abjetos poo
programacion orientado a abjetos poo
 
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
Baparekraf Digital Talent Day: Monitoring dan Coaching Penerima Fasilitasi BD...
 
History Of C Essay
History Of C EssayHistory Of C Essay
History Of C Essay
 
The Concept Of Abstract Data Types
The Concept Of Abstract Data TypesThe Concept Of Abstract Data Types
The Concept Of Abstract Data Types
 
Programming using C++ - slides.pptx
Programming using C++ - slides.pptxProgramming using C++ - slides.pptx
Programming using C++ - slides.pptx
 
How Does Angular Work?
How Does Angular Work?How Does Angular Work?
How Does Angular Work?
 
Chapter no 1
Chapter no 1Chapter no 1
Chapter no 1
 
Building a scalable app factory with Appcelerator Platform
Building a scalable app factory with Appcelerator PlatformBuilding a scalable app factory with Appcelerator Platform
Building a scalable app factory with Appcelerator Platform
 
Mobile development with Flutter
Mobile development with FlutterMobile development with Flutter
Mobile development with Flutter
 
Notes from Educator Pre-training Briefing 1 - Summary of AfG-toolset 2012-13
Notes from Educator Pre-training Briefing 1  - Summary of AfG-toolset 2012-13Notes from Educator Pre-training Briefing 1  - Summary of AfG-toolset 2012-13
Notes from Educator Pre-training Briefing 1 - Summary of AfG-toolset 2012-13
 
Oop basic overview
Oop basic overviewOop basic overview
Oop basic overview
 
Android development orientation for starters v2
Android development orientation for starters v2Android development orientation for starters v2
Android development orientation for starters v2
 
Services, tools & practices for a software house
Services, tools & practices for a software houseServices, tools & practices for a software house
Services, tools & practices for a software house
 
android development training in mumbai
android development training in mumbaiandroid development training in mumbai
android development training in mumbai
 
Ch7.pdf
Ch7.pdfCh7.pdf
Ch7.pdf
 
Android Jump Start
Android Jump StartAndroid Jump Start
Android Jump Start
 
Platform Independent App design
Platform Independent App designPlatform Independent App design
Platform Independent App design
 

Kürzlich hochgeladen

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIShubhangi Sonawane
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesShubhangi Sonawane
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 

Kürzlich hochgeladen (20)

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 

App Trainers

  • 2. 1/21/2013 Why Apple !! ● Hardware ● Software ● Synchronization ● Marketing Acceptance, ex: naming criteria, story of devices. ● Limit Products , improve quality , everything under control. ● Compatible with you stuff – Video Example. ● Running Windows :D ● Security
  • 3. 1/21/2013 App Trainers Apple Inc. iPhone History ● First iPhone – 2007 ● iPhone 3G – June 9,2008 ● Successor of iPhone 3G, 3Gs, 2009 ● The iPhone 4 – June 7, 2010 – Retina Display ● The iPhone 4 s – October 7, 2011 – Retina Display
  • 4. 1/21/2013 App Trainers Other Apple Products ● Macbook Pro ● iMac ● Macbook Air ● Mac Mini ● iPad ● iPod ● Apple TV
  • 5. 1/21/2013 App Trainers iTunes ● Is a computer program used for playing, downloading, saving, and organizing digital music and video files on desktop or laptop personal computers, It can also manage the  contents  on  iPod,  iPhone,  iPod  Touch,  …  etc. ● Introduced By Apple Inc. on January 9, 2001
  • 6. 1/21/2013 App Trainers iOS ● History ● Current Versions
  • 7. 1/21/2013 App Trainers IOS Features Timeline ● iOS 1.x: initial OS release ● iOS 2.x: second major OS release: ● This version of the OS introduces the App Store, making third-party applications available to the iPhone and iPod Touch. ● iOS 4.x: fourth major OS release ● Multitasking ● iOS 3.x: third major OS release ● Copy & Paste – MMS
  • 8. 1/21/2013 App Trainers Apple App Store The Apple App Store is a digital application distribution platform for iOS developed and maintained by Apple Inc. The service allows users to browse and download applications from the iTunes Store that were developed with the iOS SDK published through Apple Inc. ● History since 2008 ● Design ● App Store Account ● New iOS 6 changes
  • 9. 1/21/2013 App Trainers iBook , Newsstand ● What iBook Store ? ● Whats the newsstand ? ● Interactive magazines ● Video URLs
  • 10. 1/21/2013 App Trainers iTunes U :P ● E-Learning Revolution. ● Simple. ● Anytime. ● Anywhere. ● Live Example.
  • 11. 1/21/2013 App Trainers App Store Account == iTunes Account ● Apps and Regions. ● Apps availabilities. ● One account one updates. ● iTunes sync and backups. ● Payment Account. ● More than device case advantage.
  • 12. 1/21/2013 App Trainers iOS JailBreak ● What is that ?! ● Why to do that ? ● Cracked Applications. ● Ethical and Legal Overview. ● SBSettings ● Cydia Store ● Development
  • 13. 1/21/2013 App Trainers iCloud ● Nothing Here , all at Cloud :)
  • 16. 1/21/2013 App Trainers iOS VS. Android ● Security ● Polices ● User Privacy ● Performance ● Development Time
  • 17. 1/21/2013 App Trainers Build Cool Apps ● Easy to build even very complex applications. ● Results lives in your pocket. ● Very Easy to distribute at app store , even sometimes no need for marketing :D. ● Developer Account
  • 18. 1/21/2013 App Trainers Mobile Sense ● How to think in the mobile way ? ● Make you innovation portable. ● User Experience. ● Usability.
  • 19. 1/21/2013 App Trainers What do you need to Start ? ● Have experience with OOP – Object Oriented Programming. ● Mac device. ● iPhone device. ● Developer Account, costs 99 $. ● At least know what is iPhone :D.
  • 20. 1/21/2013 App Trainers App Store Revenue Methods ● Free with Ads. ● Paid – For Premium Apps. ● Free With In App Purchases.
  • 21. 1/21/2013 App Trainers Object-Oriented Programming ● An approach to application development makes programs more intuitive to design, faster to develop, more amenable to modification, and easier to understand. ● Most object-oriented development environments consist of at least three parts: – A library of objects – A set of development tools – An object-oriented programming language and support library
  • 22. 1/21/2013 App Trainers OOP with Objective-C ● The Objective-C language is a programming language designed to enable sophisticated object-oriented programming. ● Objective-C is defined as a small but powerful set of extensions to the standard ANSI C language. Its additions to C are mostly based on Smalltalk, one of the first object-oriented programming languages. ● Objective-C is designed to give C full object-oriented programming capabilities and to do so in a simple and straightforward way.
  • 23. 1/21/2013 App Trainers OOP with Objective-C ● The Objective-C language is a programming language designed to enable sophisticated object-oriented programming. ● Objective-C is defined as a small but powerful set of extensions to the standard ANSI C language. Its additions to C are mostly based on Smalltalk, one of the first object-oriented programming languages. ● Objective-C is designed to give C full object-oriented programming capabilities and to do so in a simple and straightforward way.
  • 24. 1/21/2013 App Trainers Why Objective-C? ● it’s  an  object-oriented language. ● The  kind  of  functionality  that’s  packaged  in  the  Cocoa  frameworks   can only be delivered through object-oriented techniques. ● Because Objective-C is an extension of standard ANSI C, existing C programs can be adapted to use the software frameworks without losing any of the work that went into their original development. ● You get all the benefits of C when working within Objective-C. You can choose when to do something in an object-oriented way (define a new class, for example) and when to stick to procedural programming techniques (define a structure and some functions instead of a class).
  • 25. 1/21/2013 App Trainers Why Objective-C? ● Objective-C is a fundamentally simple language. ● Small. ● Unambiguous. ● Easy to learn. ● A well-organized language like Objective-C can make becoming a proficient object-oriented programmer that much less difficult.
  • 26. 1/21/2013 App Trainers Why Objective-C? ● Compared to other object-oriented languages based on C, Objective-C is very dynamic. The compiler preserves a great deal of information about the objects themselves for use at runtime. Decisions that otherwise might be made at compile time can be postponed until the program is running. Dynamism gives Objective-C programs unusual flexibility and power.
  • 27. 1/21/2013 App Trainers Continue ● As  humans,  we’re  constantly  faced  with  myriad  facts  and   impressions that we must make sense of. ● To do so, we must abstract underlying structure away from surface details and discover the fundamental relations at work. ● Abstractions reveal causes and effects, expose patterns and frameworks,  and  separate  what’s  important  from  what’s  not. ● Object orientation provides an abstraction of the data on which you operate; moreover, it provides a concrete grouping between the data and the operations you can perform with the data—in effect giving the data behavior.
  • 28. 1/21/2013 App Trainers Data and Operations ● Programming languages have traditionally divided the world into two parts—data and operations on data. Data is static and immutable, except as the operations may change it. The procedures and functions that operate on data  have  no  lasting  state  of  their  own;;  they’re  useful  only  in  their  ability  to   affect data. ● With  a  procedural  programming  language  like  C,  that’s  about  all  there  is  to   it. The language may offer various kinds of support for organizing data and functions,  but  it  won’t  divide  the  world  any  differently.  Functions  and  data   structures are the basic elements of design. ● Object-oriented  programming  doesn’t  so  much  dispute  this  view  of  the   world as restructure it at a higher level. It groups operations and data into modular units called objects and lets you combine objects into structured networks to form a complete program. In an object-oriented programming language, objects and object interactions are the basic elements of design.
  • 29. 1/21/2013 App Trainers Data and Operations ● Bottle:Combine state (how full the bottle is, whether  or  not  it’s  open,  how  warm  its   contents are) with behavior (the ability to dispense its contents at various flow rates, to be opened or closed, to withstand high or low temperatures).
  • 30. 1/21/2013 App Trainers Interface and Implementation
  • 31. 1/21/2013 App Trainers Interface and Implementation ● To invent programs, you need to be able to capture abstractions  and  express  them  in  the  program  design.  It’s  the   job of a programming language to help you do this. ● In the Watch Example :Looking at such a unit from the inside, as  the  implementer,  you’d  be  concerned  with  what  it’s   composed of and how it works. Looking at it from the outside, as  the  user,  you’re  concerned  only  with  what  it  is  and  what  it   does. You can look past the details and think solely in terms of the role that the unit plays at a higher level.
  • 32. 1/21/2013 App Trainers Classes ● A program can have more than one object of the same kind. The program that models water usage, for example, might have several faucets and pipes and perhaps a handful of appliances and users. Objects of the same kind are said to be members of the same class. All members of a class are able to perform the same methods and have matching sets of instance variables. They also share a common definition; each kind of object is defined just once. ● In this, objects are similar to C structures. Declaring a structure defines a type. For example, the declaration. ● struct key { ● char *word; ● int count; ● };
  • 33. 1/21/2013 App Trainers Classes ● Defines the struct key type. Once defined, the structure name can be used to produce any number of instances of the type: ● struct key a, b, c, d; ● struct key *p = malloc(sizeof(struct key) * MAXITEMS);
  • 34. 1/21/2013 App Trainers Classes ● The  declaration  is  a  template  for  a  kind  of  structure,  but  it  doesn’t   create a structure that the program can use. It takes another step to allocate memory for an actual structure of that type, a step that can be repeated any number of times. ● Similarly, defining an object creates a template for a kind of object. It defines a class of objects. The template can be used to produce any number of similar objects—instances of the class. For example, there would be a single definition of the Faucet class. Using this definition, a program could allocate as many Faucet instances as it needed.
  • 35. 1/21/2013 App Trainers Classes ● A class definition is like a structure definition in that it lays out an arrangement of data elements (instance variables) that become part of every instance. Each instance has memory allocated for its own set of instance variables, which store values particular to the instance. ● However, a class definition differs from a structure declaration in that it also defines methods that specify the behavior of class members. Every instance is characterized by its access to the methods defined for the class. Two objects with equivalent data structures but different methods would not belong to the same class.
  • 36. 1/21/2013 App Trainers Modularity ● To a C programmer, a module is nothing more than a file containing source code. Breaking a large (or even not-so-large) program into different files is a convenient way of splitting it into manageable pieces. Each piece can be worked on independently and compiled alone, and then integrated with other pieces when the program is linked.
  • 37. 1/21/2013 App Trainers Reusability ● A principal goal of object-oriented programming is to make the code you write as reusable as possible—to have it serve many different situations and applications—so that you can avoid reimplementing, even  if  only  slightly  differently,  something  that’s  already  been  done. ● Reusability is influenced by factors such as these: – How reliable and bug-free the code is. – How clear the documentation is. – How simple and straightforward the programming interface is. – How efficiently the code performs its tasks. – How full the feature set is.
  • 38. 1/21/2013 App Trainers Cont. ● Encapsulation. ● Polymorphism. ● Inheritance.
  • 39. 1/21/2013 App Trainers IOS Structure ● Core OS : Native Language – OS X Kernel – Power Management – Keychain access – BSD – Certificates. – Sockets – File System – Security – Bonjour
  • 40. 1/21/2013 App Trainers IOS Structure ● Core Services: – Collections – Core Locations – Address Book – Net Services – Networking – Threading – File Access – Preferences – SQLite
  • 41. 1/21/2013 App Trainers IOS Structure ● Media: – Core Audio – JPEG, PNG, TIFF – OpenAL – PDF – Audio – Core Animation – Video Playback – OpenGL ES
  • 42. 1/21/2013 App Trainers IOS Structure ● Cocoa Touch: Point of Success – Multi Touch – Alerts – Image Picker – Controls – Camera – Map Kit – Web View
  • 43. 1/21/2013 App Trainers Platform Components ● Tools : Xcode 4 , Instruments ● Language : Objective C ● Frameworks : Such as Map Kit. ● Design Strategies : MVC
  • 44. 1/21/2013 App Trainers MVC ● Divide Objects in your programs in three “Camps” ● Model ● Controller ● View
  • 45. 1/21/2013 App Trainers Model ● What your application is (not how your application displayed) ● Example
  • 46. 1/21/2013 App Trainers Controller ● How you model is presented in the user interface (UI logic). ● Example
  • 47. 1/21/2013 App Trainers View ● The controller minions. ● Bring apple controls ● Controller connected with view in order to perform controls action and view behaviors.
  • 48. 1/21/2013 App Trainers MVC – Relations ● “Controller”  can  always  access  “Model”. ● “Controller”  relates  to  “View”  via  “Outlet” ● “View”  cannot  access  the  application  “Model”   and vice versa.
  • 49. 1/21/2013 App Trainers Objective-C Syntax ● Website URL to learn the Syntax of Objective- C
  • 50. 1/21/2013 App Trainers Examples ● App Store Apps ● Facebook ● Twitter ● Path ● Angry Birds <3 ● Skype ● Amazing Alex :D ● Limbo , :O