1 / 7

Chapter 2 iPhone App Store and App Business Issues

Chapter 2 iPhone App Store and App Business Issues. 1. iPhone Application Development Tool.

lolita
Download Presentation

Chapter 2 iPhone App Store and App Business Issues

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter 2 iPhone App Store and App Business Issues

  2. 1. iPhone Application Development Tool • Xcode : free downloadable. Xcode is an Integrated Development Environment (IDE) containing a suite of software development tools developed by Apple for developing software for OS X and iOS. First released in 2003, the latest stable release is version 4.4.1 and is available via the Mac App Store free of charge for Mac OS X Lion and OS X Mountain Lion users.

  3. 2. iPhone Developer Program: Setting up your profile for Testing and Submitting Apps • Setting up your iPhone development team • https://developer.apple.com/ • Team Agent: has all primary responsibilities for the account. • Getting an iPhone Development Certificate • Register Devices for Testing • Creating App IDs • Create a Provisioning Profile • Using the Provisioning Profile to Install an App on an iPhone, iPad, or iPod Touch • Submitting Your App for Distribution

  4. Model-View-Controller Design Pattern*.h file: declare variables, define class #import <UIKit/UIKit.h>int count; // global variable @interface ViewController : UIViewController { IBOutlet UILabel *number; // variable }- (IBAction)add; // method declaration - (IBAction)subtract; - (IBAction)reset; - (IBAction)dbl; - (IBAction)opposite; @end Key word Superclass Subclass Method name Return type - : instance method +: static method

  5. Model-View-Controller Design Pattern*.m file: implementation of class Key word @implementation ViewController- (IBAction)add { count++; number.text = [NSString stringWithFormat:@"%i", count];} … @end NSString object “string” : C-style string

  6. NSString Class Reference https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html • The NSString class declares the programmatic interface for an object that manages immutable strings. An immutable string is a text string that is defined when it is created and subsequently cannot be changed. NSString is implemented to represent an array of Unicode characters, in other words, a text string. • NSString class contains 146 methods. • stringWithFormat: Returns a string created by using a given format string as a template into which the remaining argument values are substituted. + (id)stringWithFormat:(NSString *)format,...

  7. UILabel Class Reference • The UILabel class implements a read-only text view. You can use this class to draw one or multiple lines of static text, such as those you might use to identify other parts of your user interface. • See below for detail: https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UILabel_Class/Reference/UILabel.html

More Related