User Experience Coding How-To's |
GeneralHow do I create my user interface?In general, there are three application styles for iPhone OS: productivity, utility, and immersive. Each style has some common approaches to user interface design, which you can learn about in detail by looking at iPhone Human Interface Guidelines.When you are ready to start your application, take a look at the templates that Xcode offers and choose the one that matches your application's design. The fastest way to create your user interface is to use Apple's visual tool, Interface Builder. In it you can assemble your application’s user interface graphically, and then programmatically create any user interface elements not offered by the tool. You can see some examples of how to create a variety of user interface elements by looking at these sample applications:
How do I start my application in landscape mode?To start your application in landscape mode, edit yourInfo.plist file to add the UIInterfaceOrientation key with the appropriate value (UIInterfaceOrientationLandscapeRight or UIInterfaceOrientationLandscapeLeft ), as shown in Listing 1. This provides a hint to the system to set the orientation of the status bar appropriately at launch time.<key>UIInterfaceOrientation</key> <string>UIInterfaceOrientationLandscapeRight</string>For detailed information see "Launching in Landscape Mode" in iPhone Application Programming Guide. How do I enable autorotation?To use autorotation, you must use a view controller (and subclass it), and the subclass must returnYES for the method shouldAutorotateToInterfaceOrientation: . See Listing 2.-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; }You can also choose whether to allow or deny the rotation, returning YES or NO as appropriate, after considering, for example, the value of UIInterfaceOrientation . See UIApplication Class Reference for the possible values of UIInterfaceOrientation .You can also enable support for autorotation in Interface Builder:
shouldAutorotateToInterfaceOrientation: method and return YES for each of the orientations you wish to support. If you have a navigation controller for a toolbar item, the root view controller of that navigation controller must implement the shouldAutorotateToInterfaceOrientation: method and return YES .How do I flip my interface, as the Weather application does?To "flip" your user interface, use thesetAnimationTransition:forView:Cache: method of the UIView class, and provide the appropriate constant to specify the flip direction (using UIViewAnimationTransitionFlipFromRight or UIViewAnimationTransitionFlipFromLeft ). See the UICatalog sample application and UIView Class Reference. The "Utility Application" template in Xcode provides a starting point for implementing applications which, like the Weather application, have a "front" and a "back" view. How do I handle autorotation of my user interface?For your application to support autorotation, where your interface changes between portrait and landscape orientation, it needs to implement aUIViewController object and override the shouldAutorotateToInterfaceOrientation: method. See "Autorotating views" in View Controller Programming Guide, and the WhichWayIsUp sample code.How do I internationalize or localize my application's text strings?To internationalize your application's text strings, you store your localized text inLocalizable.strings inside a folder named <language_code>.lproj , where <language_code> is an ISO 639-1 language code (for example, en.lproj or fr.lproj ). You can then obtain the localized text in the user's currently selected language for display using the NSLocalizedString function. For example, to display the French word for "City" in your interface, you would first add an entry to your fr.lproj/Localizable.strings file, as shown in Listing 3, and then use the code shown in Listing 4 to get the appropriate localized version."City" = "Ville"; label.text = NSLocalizedString(@"City", @"Label for City text field");You can also define the localizable strings in your nib file, and create localized copies of that nib. See "Internationalizing Your Application" in iPhone Application Programming Guide for more information. | ||
| ||
Multi-TouchHow do I handle touch-based input such as tracking the user's finger or detecting multiple touches?To receive touch input, you instantiate aUIResponder object (typically a view) and add instance methods that handle touches. Your methods are invoked when those touches occur.You can implement separate handlers for the different "phases" of a touch—when touches begin, move, end, or are canceled by the system. See Listing 5 for the available set of handlers. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; - (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;By default, a view ignores all but the first touch during a multi-touch sequence. If you want the view to handle multiple touches you must enable multiple touches for the view. This can be done programmatically by setting the multipleTouchEnabled property of your view to YES, or in Interface Builder using the inspector for the related view. For detailed information, see "Event Handling" in iPhone Application Programming Guide and the UITouch Class Reference. For an example of how to handle touch input, see the MoveMe sample application. | ||
| ||
Windows, Views, and ControlsHow do I detect the screen boundary?To detect the screen boundary, use theUIScreen class, which contains the bounding rectangle of the device's entire screen. When you set up the user interface for your application, use the properties of this object to get the recommended frame rectangles for your application views. How do I create a window?To create a window, use theUIWindow class, as shown in Listing 6.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];For more information, see UIWindow Class Reference. How do I create a window with a navigation controller?To create a window with a navigation controller, use theUINavigationController class, as shown in Listing 7.self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; [window setBackgroundColor:[UIColor redColor]]; MainViewController *navController = [[MainViewController alloc] init]; // create a navigation controller using the new controller navigationController = [[UINavigationController alloc] initWithRootViewController:navController]; [navController release]; // Add the navigation controller's view to the window [window addSubview:[navigationController view]]; [window makeKeyAndVisible];For more information, see UINavigationController Class Reference. How do I create a button?To create a button, use theUIButton class, as shown in Listing 8.CGRect frame = CGRectMake(0.0, 0.0, 100.0, 40.0); UIImage *buttonImage = [UIImage imageNamed:@"grayButton.png"]; UIButton *stopButton = [[UIButton alloc] initWithFrame:frame]; [stopButton setTitle:@"Button" forState:UIControlStateNormal]; [stopButton setTitleColor:[UIColor blackColor] forState:UIControlEventTouchDown]; [stopButton setBackgroundImage:buttonImage forState:UIControlStateNormal]; stopButton.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; stopButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter; [stopButton addTarget:self action:@selector(stopAction:) forControlEvents:UIControlEventTouchUpInside]; [stopButton setBackgroundColor:[UIColor clearColor]]; // then add the button to a UIView like this: // [myView addSubview: stopButton];For more information, see UIButton Class Reference. How do I create a label?To create a label, use theUILabel class, as shown in Listing 9.CGRect labelFrame = CGRectMake(0.0, 0.0, 100.0, 30.0); UILabel *label = [[UILabel alloc] initWithFrame:labelFrame]; [label setFont:[UIFont systemFontOfSize:12]]; label.textAlignment = UITextAlignmentLeft; [label setText:@"TextLabel:"]; label.textColor = [UIColor whiteColor]; label.backgroundColor = [UIColor blackColor]; [self.view addSubview:label];For more information, see UILabel Class Reference. How do I create a switch?To create a switch, use theUISwitch class, as shown in Listing 10.CGRect frame = CGRectMake(0.0, 0.0, 60.0, 26.0); UISwitch *switchControl = [[UISwitch alloc] initWithFrame:frame]; [switchControl addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside]; [switchControl setBackgroundColor:[UIColor clearColor]];For more information, see UISwitch Class Reference. How do I create a text field?To create a text field, use theUITextField class, as shown in Listing 11.CGRect textFieldFrame = CGRectMake(0.0, 0.0, 100.0, 30.0); UITextField *textField = [[UITextField alloc] initWithFrame:textFieldFrame]; [textField setBorderStyle:UITextFieldBorderStyleBezel]; [textField setTextColor:[UIColor blackColor]]; [textField setFont:[UIFont systemFontOfSize:20]]; [textField setDelegate:self]; [textField setPlaceholder:@"<enter text>"]; [textField setBackgroundColor:[UIColor whiteColor]]; textField.keyboardType = UIKeyboardTypeDefault;For more information, see UITextField Class Reference. How do I create a text view?To create a text view, use theUITextView class, as shown in Listing 12.CGRect textFieldFrame = CGRectMake(0.0, 0.0, 200.0, 200.0); UITextView *textView = [[UITextView alloc] initWithFrame:textFieldFrame]; [textView setTextColor:[UIColor blackColor]]; [textView setFont:[UIFont systemFontOfSize:20]]; [textView setDelegate:self]; [textView setBackgroundColor:[UIColor whiteColor]]; textView.keyboardType = UIKeyboardTypeDefault;For more information, see UITextView Class Reference. How do I create a web view?To create a web view, use theUIWebView class, as shown in Listing 13.CGRect webFrame = CGRectMake(0.0, 0.0, 200.0, 200.0); UIWebView *webView = [[UIWebView alloc] initWithFrame:webFrame]; [webView setBackgroundColor:[UIColor whiteColor]];For more information, see UIWebView Class Reference. How do I create a view for images?To create a view for images, use theUIImageView class, as shown in Listing 14.UIImage *image = [UIImage imageNamed:@"image.png"]; UIImageView *theImageView = [[UIImageView alloc] initWithImage:image];For more information, see UIImageView Class Reference. How do I create a slider?To create a slider, use theUISlider class, as shown in Listing 15.CGRect frame = CGRectMake(0.0, 0.0, 200.0, 10.0); UISlider *slider = [[UISlider alloc] initWithFrame:frame]; [slider addTarget:self action:@selector(sliderAction:) forControlEvents:UIControlEventValueChanged]; [slider setBackgroundColor:[UIColor clearColor]]; slider.minimumValue = 0.0; slider.maximumValue = 50.0; slider.continuous = YES; slider.value = 25.0;For more information, see UISlider Class Reference. How do I create a segmented control?To create a segmented control, use theUISegmentedControl class, as shown in Listing 16.NSArray *arrayOfImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"segment1_Image.png"], [UIImage imageNamed:@"segment2_Image.png"], [UIImage imageNamed:@"segment3_Image.png"], [UIImage imageNamed:@"segment4_Image.png"], nil]; UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems: arrayOfImages]; CGRect frame = CGRectMake(0.0, 120.0, 300.0, 44.0); [segmentedControl setFrame:frame]; [segmentedControl addTarget:self action:@selector(action:) forControlEvents:UIControlEventValueChanged];For more information, see UISegmentedControl Class Reference. How do I create a page control?To create a page control, use theUIPageControl class, as shown in Listing 17.CGRect frame = CGRectMake(0.0, 0.0, 200.0, 40.0); UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:frame]; [pageControl addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside]; [pageControl setBackgroundColor:[UIColor clearColor]]; pageControl.numberOfPages = 10;For more information, see UIPageControl Class Reference. How do I create a table view?To create a table view, use theUITableView class, as shown in Listing 18.UITableView *tableView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain]; tableView.delegate = self; tableView.dataSource = self; tableView.rowHeight = 54; [tableView reloadData];For more information, see UITableView Class Reference. See also the TableViewSuite sample application. How do I add buttons to the UINavigationController?If your application has aUIViewController object that uses a UINavigationController object, you can add custom buttons in your loadView method. See Listing 19.// add our custom add button as the nav bar's custom right view UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addAction:)]; self.navigationItem.customRightItem = addButton; [addButton release];For more information, see UINavigationController Class Reference. How do I display an alert view, action sheet, or modal view?Alerts, action sheets, and modal views are types of views that appear when something requires the user's attention or when an application needs to offer additional choices or functionality to the user. iPhone Human Interface Guidelines provides examples of what each view looks like, along with guidelines for when to use each type.Use the UIAlertView class to inform users about a problem or a change in the current situation. For example, Mail shows an alert view when it is unable to connect to the user's mail server. See UIAlertView Class Reference.Use the UIActionSheet class to provide users with additional choices related to the action they are taking. For example, Safari uses an action sheet to provide users with the options to add a link to bookmarks, add a link to the Home screen, or mail a link. See UIActionSheet Class Reference. Use the UIViewController class when you want to provide more extensive functionality in the context of the current task, or as a way to perform a subtask directly related to the user's workflow. For example, Mail provides a modal view that allows a user to compose a new mail message. For a modal view, you use the presentModalViewController:animated: method of UIViewController to display view controller as a modal child of another view controller. See the UIViewController Class Reference.You can see examples of how to implement several of these views by looking at the UICatalog sample application. |
No comments:
Post a Comment