Presented by Vu Tran Lam
Building a
Completed iPhone App
Friday, March 29, 13
2
Could You Build Apps For
This...?
Friday, March 29, 13
...And This...?
Friday, March 29, 13
Friday, March 29, 13
Friday, March 29, 13
L
6
Friday, March 29, 13
Set Up
When you develop apps, you use the iOS SDK and Xcode (Apple’s IDE). Xcode provides
everything you need to create great apps for iPhone, iPod touch, and iPad. It includes
a source editor, a graphical user interface editor, and many other features. Xcode
employs a single window (workspace window), that presents most of the tools you
need to develop apps. The iOS SDK extends the Xcode toolset to include the tools,
compilers, and frameworks you need specifically for iOS.
Friday, March 29, 13
Language
Objective-C is an elegant object-oriented language that powers all iOS apps. You write
Objective-C code to create your app, and you need to understand this language in
order to use most application frameworks. Although you can use other languages for
development, you can’t build an iOS app without Objective-C.
Friday, March 29, 13
Friday, March 29, 13
Development
Friday, March 29, 13
• Frameworks
Development
Friday, March 29, 13
Frameworks
An app consists of code that you write and frameworks provided by Apple. A framework
contains a library of methods that your app can call. More than one app can access a
framework library at the same time.
Friday, March 29, 13
Using an Object-Oriented Framework
Friday, March 29, 13
Handle the Events
Friday, March 29, 13
Survey Major Frameworks
Friday, March 29, 13
Survey Major Frameworks
Friday, March 29, 13
• Frameworks
• Design Patterns
Development
Friday, March 29, 13
Design Patterns
A design pattern solves a common software engineering problem. Patterns are abstract
designs, not code. When you adopt a design, you adapt the general pattern to your
specific needs.
Friday, March 29, 13
Design Pattern: Model-View-Controller
Friday, March 29, 13
Design Pattern: Model-View-Controller
Friday, March 29, 13
• Frameworks
• Design Patterns
• Human Interface Design
Development
Friday, March 29, 13
Human Interface Design
It’s not enough to create an app that works. Users expect iOS apps to be intuitive,
interactive, and engaging. Think about the user experience as you design every aspect
of your app, from the features you choose to the way your app responds to a gesture.
Friday, March 29, 13
Human Interface Design
• Types of App
Friday, March 29, 13
Human Interface Design
• Types of App
• Wireframing
Friday, March 29, 13
Human Interface Design
• Types of App
• Wireframing
• Icons
Friday, March 29, 13
• Frameworks
• Design Patterns
• Human Interface Design
• App Design
Development
Friday, March 29, 13
App Design
Friday, March 29, 13
App Design
Before you begin writing a line of code, you should make
some critical design decisions:
• Be as specific as possible about your app’s purpose and features
• Choose the kind of data model your app will use
• Decide on UI style for your app (e.g. single view or master-detail)
• Decide your app to be universal (runs on iPad, iPhone, iPod touch)
These and other design decisions help you to construct the
architecture of your app.
Friday, March 29, 13
• Frameworks
• Design Patterns
• Human Interface Design
• App Design
• App Store
Development
Friday, March 29, 13
App Store
To make a great app, you need to test it on actual devices throughout the development
process, not just in Simulator. To run an app on iOS-based devices, you need to
register the devices you want to test on, create certificates that authorize developers to
sign an app, and create an app ID to identify the app. Finally, you will do to publish an
app on the App Store.
Friday, March 29, 13
Xcode IDE
Friday, March 29, 13
Xcode Workspace
Friday, March 29, 13
Toolbar Xcode Workspace
Friday, March 29, 13
Toolbar
Navigation
Selector Bar
Filter Bar
Project
Navigator
Xcode Workspace
Friday, March 29, 13
Toolbar
Navigation
Selector Bar
Filter Bar
Interface Builder
Project
Navigator
Xcode Workspace
Friday, March 29, 13
Toolbar
Navigation
Selector Bar
Jump Bars
Filter Bar
Interface Builder Editor Area
Project
Navigator
Xcode Workspace
Friday, March 29, 13
Toolbar
Navigation
Selector Bar
Library
Selector Bar
Filter Bar
Inspector
Selector Bar
Interface Builder Editor Area
Inspector Pane
Library Pane
Project
Navigator
Jump Bars
Xcode Workspace
Friday, March 29, 13
Toolbar
Navigation
Selector Bar
Library
Selector Bar
Filter Bar
Inspector
Selector Bar
Debug Bar
Interface Builder Editor Area
Inspector Pane
Library Pane
Debug Area
Project
Navigator
Jump Bars
Xcode Workspace
Friday, March 29, 13
Friday, March 29, 13
Your First iOS App - Hello World
Friday, March 29, 13
Introduction
First iOS App introduces Three Ts of iOS app development:
• Tools: How to use Xcode to create and manage a project?
• Technologies: How to create an app that responds to user input?
• Techniques: How to take advantage fundamental design patterns?
Friday, March 29, 13
Part 1: Getting Started
• Create and Test a New Project
• Anatomy of an Application
• Find Out How an Application Starts Up
• Look at UIApplicationMain Function
• Look at Storyboad File
• Look at Property List File
• Understand View and Window Architecture
Friday, March 29, 13
Anatomy of an Application
• Compiled code
• Storyboard files
• Resources (images, sounds, strings, etc)
• Info.plist file (application configuration)
Friday, March 29, 13
• Compiled code
• Your code
• Framework
• Storyboard files
• Resources (images, sounds, strings, etc)
• Info.plist file (application configuration)
Anatomy of an Application
Friday, March 29, 13
• Compiled code
• Your code
• Framework
• Storyboard files
• UI elements and other objects
• Details about object relationships
• Resources (images, sounds, strings, etc)
• Info.plist file (application configuration)
Anatomy of an Application
Friday, March 29, 13
Anatomy of an Application
Friday, March 29, 13
Anatomy of an Application
Your Code
Friday, March 29, 13
Anatomy of an Application
Your Code
Storyboard
Friday, March 29, 13
Anatomy of an Application
Your Code
Storyboard
Info.plist File
Friday, March 29, 13
Anatomy of an Application
Your Code
Storyboard
Info.plist File
Framework
Friday, March 29, 13
Understanding View and Window Architecture
Views and windows present your application’s user interface and handle the interactions
with that interface. UIKit and other system frameworks provide a number of views that
you can use as-is with little or no modification. You can also define custom views for
places where you need to present content differently than the standard views allow.
Friday, March 29, 13
Part 2: Inspecting View Controller and Its View
• Use Inspector to Examine View Controller
• Open Inspector
• Change View’s Background Color
• Set Background Color of View Controller’s View
• Restore Background Color of View Controller’s View
Friday, March 29, 13
Change View’s Background Color
Friday, March 29, 13
Part 3: Configuring View
• Understand View Controller Basics
• Add User Interface Elements
• Create an Action for Button
• Create Outlets for Text Field and Label
• Make Text Field’s Delegate Connection
• Test Application
Friday, March 29, 13
Understand View Controller Basics
View controllers are a vital link between an app’s data and its visual appearance.
Whenever an iOS app displays a user interface, the displayed content is managed by a
view controller or a group of view controllers coordinating with each other. Therefore,
view controllers provide the skeletal framework on which you build your apps.
Friday, March 29, 13
Understand View Controller Basics
A key part of any view controller’s implementation is to manage the views used to display
its content. It’s very difficult to manage many connections view controllers. Instead, use
Interface Builder to create storyboards. Storyboards make it easier to visualize the
relationships in your app and simplify the effort needed to initialize objects at runtime.
Interface Builder
Friday, March 29, 13
Understand View Controller Basics
This is “Hello World” window with its target screen and content views. On the left, you
can see the objects that make up this interface and understand how they are
connected to each other.
Friday, March 29, 13
Add User Interface Elements
You add user interface (UI) elements by dragging them from the object library to a view
on the canvas. After adding UI elements, you can move and resize them.
Friday, March 29, 13
Create an Action for Button
Control-drag, press and hold the Control key while you drag from the button to the
implementation file in the assistant editor pane. After that, you must input as following:
Friday, March 29, 13
Create Outlet for Text Field
Control-drag, press and hold the Control key while you drag from the text field to the
implementation file in the assistant editor pane. After that, you must input as following:
Friday, March 29, 13
Create Outlet for Label
Control-drag, press and hold the Control key while you drag from the label to the
implementation file in the assistant editor pane. After that, you must input as following:
Friday, March 29, 13
Make Text Field’s Delegate Connection
Control-drag, press and hold the Control key while you drag from text field to the
yellow sphere in the scene dock. After that, you must input as following:
Control-drag and
select delegate
Friday, March 29, 13
Test Application
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
@property (copy, nonatomic) NSString *userName;
In HelloWorldViewController.h, type:
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
• Implement changeGreeting: Method
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
• Implement changeGreeting: Method
- (IBAction)changeGreeting:(id)sender
{
self.userName = self.textField.text;
NSString *nameString = self.userName;
if (nameString.length == 0)
{
nameString = @"World";
}
NSString *greeting = [[NSString alloc] initWithFormat: @"Hello, %@!",
nameString];
self.label.text = greeting;
}
In HelloWorldViewController.m, type:
- (IBAction)changeGreeting:(id)sender
{
self.userName = self.textField.text;
NSString *nameString = self.userName;
if (nameString.length == 0)
{
nameString = @"World";
}
NSString *greeting = [[NSString alloc] initWithFormat: @"Hello, %@!",
nameString];
self.label.text = greeting;
}
In HelloWorldViewController.m, type:
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
• Implement changeGreeting: Method
• Configure View Controller as Text Field’s Delegate
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
• Implement changeGreeting: Method
• Configure View Controller as Text Field’s Delegate
- (BOOL) textFieldShouldReturn: (UITextField *)theTextField
{
if (theTextField == self.textField)
{
[theTextField resignFirstResponder];
}
return YES;
}
@end
In HelloWorldViewController.m, type:
In HelloWorldViewController.h, add <UITextFieldDelegate>:
@interface HelloWorldViewController : UIViewController <UITextFieldDelegate>
Friday, March 29, 13
Part 4: Implementing View Controller
• Add a Property for User’s Name
• Implement changeGreeting: Method
• Configure View Controller as Text Field’s Delegate
• Run Application
Friday, March 29, 13
Next...
Friday, March 29, 13
MVC
Friday, March 29, 13
many thanks
to
Thank you
lamvt@fpt.com.vn
please
say
Stanford University
https://developer.apple.com
Developer Center
http://www.stanford.edu/class/cs193p
xin
chào
References
http://az4you.wordpress.com
http://www.slideshare.net/vutlam9083/building-a-completed-
iphone-app
Friday, March 29, 13

Building a Completed iPhone App

  • 1.
    Presented by VuTran Lam Building a Completed iPhone App Friday, March 29, 13
  • 2.
    2 Could You BuildApps For This...? Friday, March 29, 13
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
    Set Up When youdevelop apps, you use the iOS SDK and Xcode (Apple’s IDE). Xcode provides everything you need to create great apps for iPhone, iPod touch, and iPad. It includes a source editor, a graphical user interface editor, and many other features. Xcode employs a single window (workspace window), that presents most of the tools you need to develop apps. The iOS SDK extends the Xcode toolset to include the tools, compilers, and frameworks you need specifically for iOS. Friday, March 29, 13
  • 8.
    Language Objective-C is anelegant object-oriented language that powers all iOS apps. You write Objective-C code to create your app, and you need to understand this language in order to use most application frameworks. Although you can use other languages for development, you can’t build an iOS app without Objective-C. Friday, March 29, 13
  • 9.
  • 10.
  • 11.
  • 12.
    Frameworks An app consistsof code that you write and frameworks provided by Apple. A framework contains a library of methods that your app can call. More than one app can access a framework library at the same time. Friday, March 29, 13
  • 13.
    Using an Object-OrientedFramework Friday, March 29, 13
  • 14.
  • 15.
  • 16.
  • 17.
    • Frameworks • DesignPatterns Development Friday, March 29, 13
  • 18.
    Design Patterns A designpattern solves a common software engineering problem. Patterns are abstract designs, not code. When you adopt a design, you adapt the general pattern to your specific needs. Friday, March 29, 13
  • 19.
  • 20.
  • 21.
    • Frameworks • DesignPatterns • Human Interface Design Development Friday, March 29, 13
  • 22.
    Human Interface Design It’snot enough to create an app that works. Users expect iOS apps to be intuitive, interactive, and engaging. Think about the user experience as you design every aspect of your app, from the features you choose to the way your app responds to a gesture. Friday, March 29, 13
  • 23.
    Human Interface Design •Types of App Friday, March 29, 13
  • 24.
    Human Interface Design •Types of App • Wireframing Friday, March 29, 13
  • 25.
    Human Interface Design •Types of App • Wireframing • Icons Friday, March 29, 13
  • 26.
    • Frameworks • DesignPatterns • Human Interface Design • App Design Development Friday, March 29, 13
  • 27.
  • 28.
    App Design Before youbegin writing a line of code, you should make some critical design decisions: • Be as specific as possible about your app’s purpose and features • Choose the kind of data model your app will use • Decide on UI style for your app (e.g. single view or master-detail) • Decide your app to be universal (runs on iPad, iPhone, iPod touch) These and other design decisions help you to construct the architecture of your app. Friday, March 29, 13
  • 29.
    • Frameworks • DesignPatterns • Human Interface Design • App Design • App Store Development Friday, March 29, 13
  • 30.
    App Store To makea great app, you need to test it on actual devices throughout the development process, not just in Simulator. To run an app on iOS-based devices, you need to register the devices you want to test on, create certificates that authorize developers to sign an app, and create an app ID to identify the app. Finally, you will do to publish an app on the App Store. Friday, March 29, 13
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
    Toolbar Navigation Selector Bar Filter Bar InterfaceBuilder Project Navigator Xcode Workspace Friday, March 29, 13
  • 36.
    Toolbar Navigation Selector Bar Jump Bars FilterBar Interface Builder Editor Area Project Navigator Xcode Workspace Friday, March 29, 13
  • 37.
    Toolbar Navigation Selector Bar Library Selector Bar FilterBar Inspector Selector Bar Interface Builder Editor Area Inspector Pane Library Pane Project Navigator Jump Bars Xcode Workspace Friday, March 29, 13
  • 38.
    Toolbar Navigation Selector Bar Library Selector Bar FilterBar Inspector Selector Bar Debug Bar Interface Builder Editor Area Inspector Pane Library Pane Debug Area Project Navigator Jump Bars Xcode Workspace Friday, March 29, 13
  • 39.
  • 40.
    Your First iOSApp - Hello World Friday, March 29, 13
  • 41.
    Introduction First iOS Appintroduces Three Ts of iOS app development: • Tools: How to use Xcode to create and manage a project? • Technologies: How to create an app that responds to user input? • Techniques: How to take advantage fundamental design patterns? Friday, March 29, 13
  • 42.
    Part 1: GettingStarted • Create and Test a New Project • Anatomy of an Application • Find Out How an Application Starts Up • Look at UIApplicationMain Function • Look at Storyboad File • Look at Property List File • Understand View and Window Architecture Friday, March 29, 13
  • 43.
    Anatomy of anApplication • Compiled code • Storyboard files • Resources (images, sounds, strings, etc) • Info.plist file (application configuration) Friday, March 29, 13
  • 44.
    • Compiled code •Your code • Framework • Storyboard files • Resources (images, sounds, strings, etc) • Info.plist file (application configuration) Anatomy of an Application Friday, March 29, 13
  • 45.
    • Compiled code •Your code • Framework • Storyboard files • UI elements and other objects • Details about object relationships • Resources (images, sounds, strings, etc) • Info.plist file (application configuration) Anatomy of an Application Friday, March 29, 13
  • 46.
    Anatomy of anApplication Friday, March 29, 13
  • 47.
    Anatomy of anApplication Your Code Friday, March 29, 13
  • 48.
    Anatomy of anApplication Your Code Storyboard Friday, March 29, 13
  • 49.
    Anatomy of anApplication Your Code Storyboard Info.plist File Friday, March 29, 13
  • 50.
    Anatomy of anApplication Your Code Storyboard Info.plist File Framework Friday, March 29, 13
  • 51.
    Understanding View andWindow Architecture Views and windows present your application’s user interface and handle the interactions with that interface. UIKit and other system frameworks provide a number of views that you can use as-is with little or no modification. You can also define custom views for places where you need to present content differently than the standard views allow. Friday, March 29, 13
  • 52.
    Part 2: InspectingView Controller and Its View • Use Inspector to Examine View Controller • Open Inspector • Change View’s Background Color • Set Background Color of View Controller’s View • Restore Background Color of View Controller’s View Friday, March 29, 13
  • 53.
    Change View’s BackgroundColor Friday, March 29, 13
  • 54.
    Part 3: ConfiguringView • Understand View Controller Basics • Add User Interface Elements • Create an Action for Button • Create Outlets for Text Field and Label • Make Text Field’s Delegate Connection • Test Application Friday, March 29, 13
  • 55.
    Understand View ControllerBasics View controllers are a vital link between an app’s data and its visual appearance. Whenever an iOS app displays a user interface, the displayed content is managed by a view controller or a group of view controllers coordinating with each other. Therefore, view controllers provide the skeletal framework on which you build your apps. Friday, March 29, 13
  • 56.
    Understand View ControllerBasics A key part of any view controller’s implementation is to manage the views used to display its content. It’s very difficult to manage many connections view controllers. Instead, use Interface Builder to create storyboards. Storyboards make it easier to visualize the relationships in your app and simplify the effort needed to initialize objects at runtime. Interface Builder Friday, March 29, 13
  • 57.
    Understand View ControllerBasics This is “Hello World” window with its target screen and content views. On the left, you can see the objects that make up this interface and understand how they are connected to each other. Friday, March 29, 13
  • 58.
    Add User InterfaceElements You add user interface (UI) elements by dragging them from the object library to a view on the canvas. After adding UI elements, you can move and resize them. Friday, March 29, 13
  • 59.
    Create an Actionfor Button Control-drag, press and hold the Control key while you drag from the button to the implementation file in the assistant editor pane. After that, you must input as following: Friday, March 29, 13
  • 60.
    Create Outlet forText Field Control-drag, press and hold the Control key while you drag from the text field to the implementation file in the assistant editor pane. After that, you must input as following: Friday, March 29, 13
  • 61.
    Create Outlet forLabel Control-drag, press and hold the Control key while you drag from the label to the implementation file in the assistant editor pane. After that, you must input as following: Friday, March 29, 13
  • 62.
    Make Text Field’sDelegate Connection Control-drag, press and hold the Control key while you drag from text field to the yellow sphere in the scene dock. After that, you must input as following: Control-drag and select delegate Friday, March 29, 13
  • 63.
  • 64.
    Part 4: ImplementingView Controller • Add a Property for User’s Name Friday, March 29, 13
  • 65.
    Part 4: ImplementingView Controller • Add a Property for User’s Name @property (copy, nonatomic) NSString *userName; In HelloWorldViewController.h, type: Friday, March 29, 13
  • 66.
    Part 4: ImplementingView Controller • Add a Property for User’s Name • Implement changeGreeting: Method Friday, March 29, 13
  • 67.
    Part 4: ImplementingView Controller • Add a Property for User’s Name • Implement changeGreeting: Method - (IBAction)changeGreeting:(id)sender { self.userName = self.textField.text; NSString *nameString = self.userName; if (nameString.length == 0) { nameString = @"World"; } NSString *greeting = [[NSString alloc] initWithFormat: @"Hello, %@!", nameString]; self.label.text = greeting; } In HelloWorldViewController.m, type: - (IBAction)changeGreeting:(id)sender { self.userName = self.textField.text; NSString *nameString = self.userName; if (nameString.length == 0) { nameString = @"World"; } NSString *greeting = [[NSString alloc] initWithFormat: @"Hello, %@!", nameString]; self.label.text = greeting; } In HelloWorldViewController.m, type: Friday, March 29, 13
  • 68.
    Part 4: ImplementingView Controller • Add a Property for User’s Name • Implement changeGreeting: Method • Configure View Controller as Text Field’s Delegate Friday, March 29, 13
  • 69.
    Part 4: ImplementingView Controller • Add a Property for User’s Name • Implement changeGreeting: Method • Configure View Controller as Text Field’s Delegate - (BOOL) textFieldShouldReturn: (UITextField *)theTextField { if (theTextField == self.textField) { [theTextField resignFirstResponder]; } return YES; } @end In HelloWorldViewController.m, type: In HelloWorldViewController.h, add <UITextFieldDelegate>: @interface HelloWorldViewController : UIViewController <UITextFieldDelegate> Friday, March 29, 13
  • 70.
    Part 4: ImplementingView Controller • Add a Property for User’s Name • Implement changeGreeting: Method • Configure View Controller as Text Field’s Delegate • Run Application Friday, March 29, 13
  • 71.
  • 72.
  • 73.
    many thanks to Thank you lamvt@fpt.com.vn please say StanfordUniversity https://developer.apple.com Developer Center http://www.stanford.edu/class/cs193p xin chào References http://az4you.wordpress.com http://www.slideshare.net/vutlam9083/building-a-completed- iphone-app Friday, March 29, 13