?? segmentviewcontroller.m
字號:
/*File: SegmentViewController.mAbstract: The view controller for hosting the UISegmentedControl features ofthis sample.Version: 1.7Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.("Apple") in consideration of your agreement to the following terms, and youruse, installation, modification or redistribution of this Apple softwareconstitutes acceptance of these terms. If you do not agree with these terms,please do not use, install, modify or redistribute this Apple software.In consideration of your agreement to abide by the following terms, and subjectto these terms, Apple grants you a personal, non-exclusive license, underApple's copyrights in this original Apple software (the "Apple Software"), touse, reproduce, modify and redistribute the Apple Software, with or withoutmodifications, in source and/or binary forms; provided that if you redistributethe Apple Software in its entirety and without modifications, you must retainthis notice and the following text and disclaimers in all such redistributionsof the Apple Software.Neither the name, trademarks, service marks or logos of Apple Inc. may be usedto endorse or promote products derived from the Apple Software without specificprior written permission from Apple. Except as expressly stated in this notice,no other rights or licenses, express or implied, are granted by Apple herein,including but not limited to any patent rights that may be infringed by yourderivative works or by other works in which the Apple Software may beincorporated.The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NOWARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIEDWARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULARPURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR INCOMBINATION WITH YOUR PRODUCTS.IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL ORCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTEGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/ORDISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OFCONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IFAPPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.Copyright (C) 2008 Apple Inc. All Rights Reserved.*/#import "SegmentViewController.h"#import "Constants.h"@implementation SegmentViewController- (id)init{ self = [super init]; if (self) { // this title will appear in the navigation bar self.title = NSLocalizedString(@"SegmentTitle", @""); } return self;}+ (UILabel *)labelWithFrame:(CGRect)frame title:(NSString *)title{ UILabel *label = [[[UILabel alloc] initWithFrame:frame] autorelease]; label.textAlignment = UITextAlignmentLeft; label.text = title; label.font = [UIFont boldSystemFontOfSize:17.0]; label.textColor = [UIColor colorWithRed:76.0/255.0 green:86.0/255.0 blue:108.0/255.0 alpha:1.0]; label.backgroundColor = [UIColor clearColor]; return label;}- (void)createControls{ NSArray *segmentTextContent = [NSArray arrayWithObjects: @"Check", @"Search", @"Tools", nil]; // label CGFloat yPlacement = kTopMargin; CGRect frame = CGRectMake(kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kLabelHeight); [self.view addSubview:[SegmentViewController labelWithFrame:frame title:@"UISegmentedControl:"]]; #pragma mark #pragma mark UISegmentedControl#pragma mark UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems: [NSArray arrayWithObjects: [UIImage imageNamed:@"segment_check.png"], [UIImage imageNamed:@"segment_search.png"], [UIImage imageNamed:@"segment_tools.png"], nil]]; yPlacement += kTweenMargin + kLabelHeight; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kSegmentedControlHeight); segmentedControl.frame = frame; [segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged]; segmentedControl.segmentedControlStyle = UISegmentedControlStylePlain; segmentedControl.selectedSegmentIndex = 1; [self.view addSubview:segmentedControl]; [segmentedControl release]; // label yPlacement += (kTweenMargin * 2.0) + kSegmentedControlHeight; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kLabelHeight); [self.view addSubview:[SegmentViewController labelWithFrame:frame title:@"UISegmentControlStyleBordered:"]]; #pragma mark#pragma mark UISegmentControlStyleBordered#pragma mark segmentedControl = [[UISegmentedControl alloc] initWithItems:segmentTextContent]; yPlacement += kTweenMargin + kLabelHeight; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kSegmentedControlHeight); segmentedControl.frame = frame; [segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged]; segmentedControl.segmentedControlStyle = UISegmentedControlStyleBordered; segmentedControl.selectedSegmentIndex = 1; [self.view addSubview:segmentedControl]; [segmentedControl release]; // label yPlacement += (kTweenMargin * 2.0) + kSegmentedControlHeight; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kLabelHeight); [self.view addSubview:[SegmentViewController labelWithFrame:frame title:@"UISegmentControlStyleBar:"]]; #pragma mark #pragma mark UISegmentControlStyleBar#pragma mark yPlacement += kTweenMargin + kLabelHeight; segmentedControl = [[UISegmentedControl alloc] initWithItems:segmentTextContent]; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kSegmentedControlHeight); segmentedControl.frame = frame; [segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged]; segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar; segmentedControl.selectedSegmentIndex = 1; [self.view addSubview:segmentedControl]; [segmentedControl release]; // label yPlacement += (kTweenMargin * 2.0) + kSegmentedControlHeight; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width, kLabelHeight); [self.view addSubview:[SegmentViewController labelWithFrame:frame title:@"UISegmentControlStyleBar: (tinted)"]]; #pragma mark#pragma mark UISegmentedControl (red-tinted)#pragma mark segmentedControl = [[UISegmentedControl alloc] initWithItems:segmentTextContent]; yPlacement += kTweenMargin + kLabelHeight; frame = CGRectMake( kLeftMargin, yPlacement, self.view.bounds.size.width - (kRightMargin * 2.0), kSegmentedControlHeight); segmentedControl.frame = frame; [segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged]; segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar; segmentedControl.tintColor = [UIColor colorWithRed:0.70 green:0.171 blue:0.1 alpha:1.0]; segmentedControl.selectedSegmentIndex = 1; [self.view addSubview:segmentedControl]; [segmentedControl release];}- (void)loadView{ // create a gradient-based content view UIView *contentView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]]; contentView.backgroundColor = [UIColor groupTableViewBackgroundColor]; // use the table view background color contentView.autoresizesSubviews = YES; self.view = contentView; [contentView release]; [self createControls]; // create the showcase of controls}- (void)segmentAction:(id)sender{ NSLog(@"segmentAction: selected segment = %d", [sender selectedSegmentIndex]);}@end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -