- 浏览: 109903 次
- 性别:
- 来自: 北京
-
最新评论
我们要实现下面的效果,就是通过下方的标签栏切换视图来显示不同的选取器
首先创建工程,选择Window-Based Application模板,取项目名称为Picker。生成后选中Classes文件夹,从File中选择new File,再选择UIViewController subclass图标,顺便点选下面的第三项-with xib for user interface,分别取名为DatePicker,SingleComponentPicker,DoubleComponentPicker,生成之后将.xib文件拖入Resources文件夹中。
先添加根视图控制器,单击PickerAppDelegate.h类
单击PickerAppDelegate.m
双击MainWindow.xib,从库中拖出一个Tab Bar Controller到nib主窗口,这样会出现一个新的窗口
起初下面只有两个标签,图上的3个标签是又添加上去了1个,选中新出现的窗口,按下花+1打开他的属性,点+,就能添加标签。
为了使每一个标签都能与对应的nib相关联,我们选中第一个。保留title为空,将nib name指定为DatePickerView,按花+4,将类改为DatePicker,再点中标签可以改变标签的名称。以此类推,完成剩下标签的相关连。
再nib主窗口中按住Ctrl将Picker App Delegate拖到Tab Bar Controller图标中。
单击DatePicker.h,完成代码
单击DatePicker.m,完成代码
这样第一个视图就完成了。
进行第二个,单个组件选取器,在SingleComponentPicker.h中声明输出口和操作
在相应的.xib中创建相应视图,一个Picker View和一个按钮,并完成如下关联
在相应.m文件中进行编码
第二个视图也就完成了,下面创建第三个,在DoubleComponentPicker.h中声明输出口和操作
控件的形式和关联和第二个视图中一样,可以参考。在相应的.m文件中进行编码
这样就结束了



首先创建工程,选择Window-Based Application模板,取项目名称为Picker。生成后选中Classes文件夹,从File中选择new File,再选择UIViewController subclass图标,顺便点选下面的第三项-with xib for user interface,分别取名为DatePicker,SingleComponentPicker,DoubleComponentPicker,生成之后将.xib文件拖入Resources文件夹中。
先添加根视图控制器,单击PickerAppDelegate.h类
#import <UIKit/UIKit.h> @interface PickersAppDelegate : NSObject <UIApplicationDelegate> { UIWindow *window; UITabBarController *rootController; } @property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) IBOutlet UITabBarController *rootController; @end
单击PickerAppDelegate.m
@synthesize window; @synthesize rootController; #pragma mark - #pragma mark Application lifecycle - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [window addSubview:rootController.view]; [window makeKeyAndVisible]; return YES; } - (void)dealloc { [rootController release]; [window release]; [super dealloc]; }
双击MainWindow.xib,从库中拖出一个Tab Bar Controller到nib主窗口,这样会出现一个新的窗口

起初下面只有两个标签,图上的3个标签是又添加上去了1个,选中新出现的窗口,按下花+1打开他的属性,点+,就能添加标签。

为了使每一个标签都能与对应的nib相关联,我们选中第一个。保留title为空,将nib name指定为DatePickerView,按花+4,将类改为DatePicker,再点中标签可以改变标签的名称。以此类推,完成剩下标签的相关连。


再nib主窗口中按住Ctrl将Picker App Delegate拖到Tab Bar Controller图标中。
单击DatePicker.h,完成代码
#import <UIKit/UIKit.h> @interface DatePicker : UIViewController { IBOutlet UIDatePicker *datePicker; } @property (nonatomic,retain) UIDatePicker *datePicker; -(IBAction)buttonPressed; @end
单击DatePicker.m,完成代码
@synthesize datePicker; -(IBAction)buttonPressed{ NSData *selected = [datePicker date]; NSString *message = [[NSString alloc] initWithFormat:@"The date and time is:%@",selected]; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Data and Time Selected" message:message delegate:nil cancelButtonTitle:@"Yes,I did" otherButtonTitles:nil]; [alert show]; [alert release]; [message release]; } - (void)viewDidLoad { NSDate *now = [[NSDate alloc] init]; [datePicker setDate:now animated:YES]; [now release]; [super viewDidLoad]; } - (void)dealloc { [datePicker release]; [super dealloc]; }
这样第一个视图就完成了。
进行第二个,单个组件选取器,在SingleComponentPicker.h中声明输出口和操作
#import <UIKit/UIKit.h> @interface SinglecomponentPickerViewController : UIViewController <UIPickerViewDelegate,UIPickerViewDataSource>{ IBOutlet UIPickerView *singlePicker; NSArray *pickerData; } @property (nonatomic,retain) UIPickerView *singlePicker; @property (nonatomic,retain) NSArray *pickerData; -(IBAction)buttonPressed; @end
在相应的.xib中创建相应视图,一个Picker View和一个按钮,并完成如下关联


在相应.m文件中进行编码
@synthesize singlePicker; @synthesize pickerData; -(IBAction)buttonPressed{ NSInteger row = [singlePicker selectedRowInComponent:0]; NSString *selected = [pickerData objectAtIndex:row]; NSString *title = [[NSString alloc] initWithFormat:@"You selected %@!",selected]; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:@"Thank you for choosing!" delegate:nil cancelButtonTitle:@"you'are welcome." otherButtonTitles:nil]; [alert show]; [alert release]; [title release]; } - (void)viewDidLoad { NSArray *array = [[NSArray alloc] initWithObjects:@"Inter Milan",@"AC Milan",@"Arsenal",@"Liverpool",@"Chelsea",@"Newcastle",@"Manchester United",@"Real Madrid",nil]; self.pickerData = array; [array release]; } - (void)dealloc { [singlePicker release]; [pickerData release]; [super dealloc]; } #pragma mark - #pragma mark Picker Data Source Methods - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView{ return 1; } - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component{ return [pickerData count]; } #pragma mark Picker Delegate Methods - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component{ return [pickerData objectAtIndex:row]; } @end
第二个视图也就完成了,下面创建第三个,在DoubleComponentPicker.h中声明输出口和操作
#import <UIKit/UIKit.h> #define kFillingComponent 0 #define kBreadComponent 1 @interface DoublecomponentPickerViewController : UIViewController <UIPickerViewDelegate,UIPickerViewDataSource>{ IBOutlet UIPickerView *doublePicker; NSArray *fillingTypes; NSArray *breadTypes; } @property (nonatomic,retain)UIPickerView *doublePicker; @property (nonatomic,retain)NSArray *fillingTypes; @property (nonatomic,retain)NSArray *breadTypes; -(IBAction)buttonPressed; @end
控件的形式和关联和第二个视图中一样,可以参考。在相应的.m文件中进行编码
@synthesize doublePicker; @synthesize fillingTypes; @synthesize breadTypes; -(IBAction)buttonPressed{ NSInteger breadRow = [doublePicker selectedRowInComponent:kBreadComponent]; NSInteger fillingRow = [doublePicker selectedRowInComponent:kFillingComponent]; NSString *bread = [breadTypes objectAtIndex:breadRow]; NSString *filling = [fillingTypes objectAtIndex:fillingRow]; NSString *message = [[NSString alloc] initWithFormat:@"your %@ on %@ bread will be right up.",filling,bread]; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Thank you" message:message delegate:nil cancelButtonTitle:@"Great" otherButtonTitles:nil]; [alert show]; [alert release]; [message release]; } - (void)viewDidLoad { NSArray *breadArray = [[NSArray alloc] initWithObjects:@"Inter Milan",@"AC Milan",@"Arsenal",@"Liverpool",@"Chelsea",@"Newcastle",@"Manchester United",@"Real Madrid",nil]; self.breadTypes = breadArray; [breadArray release]; NSArray *fillingArray = [[NSArray alloc] initWithObjects:@"Raul",@"AC Milan",@"Arsenal",@"Liverpool",@"Chelsea",@"Newcastle",@"Manchester United",@"Real Madrid",nil]; self.fillingTypes = fillingArray; [fillingArray release]; } - (void)dealloc { [doublePicker release]; [breadTypes release]; [fillingTypes release]; [super dealloc]; } #pragma mark - #pragma mark Picker Data Source Methods - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView{ return 2; } - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component{ if (component == kBreadComponent) { return [self.breadTypes count]; } return [self.fillingTypes count]; } #pragma mark Picker Delegate Methods - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component{ if (component == kBreadComponent) { return [self.breadTypes objectAtIndex:row]; } return [self.fillingTypes objectAtIndex:row]; } @end
这样就结束了
发表评论
-
ios xcode4.2 定位bug
2012-05-31 09:03 913见附件 三个值分别为NSAutoreleaseFreeObj ... -
在webVIew控件上获取scrollerVIew控件
2012-03-29 11:05 1096如果你用的是ios5,uiwebView有个属性是scroll ... -
UITextView的Done按键
2011-12-08 17:20 1151- (BOOL)textView:(UITextView *) ... -
获取info.plist中信息
2011-08-17 21:20 2432NSString *versionStr = [[NSBund ... -
UITableViewCell的使用——自定义tableView视图
2010-11-19 19:13 70008视图需要我们自己去定义样式时用到了TableViewCell组 ... -
在Tag Bar中使用Navgation
2010-11-19 10:13 3279前面分别学到了Tag Bar和Navigation的使用,这次 ... -
导航控制器Nav和UITableView的使用
2010-11-18 17:17 6542接着我前两篇的登陆继 ... -
WebView的简单应用
2010-11-16 18:55 1579我们这次要显示出一个google首页 首先制作页面 ... -
简单的页面登陆和页面跳转
2010-11-12 10:13 11169首先做出一个登陆的基本页面 在.h文件中写出所用到的接口和方 ... -
初学者——Objective c 编写简单的计算器
2010-11-10 18:48 9707首先用Interface Builder做出一个简单的计算器图 ...
相关推荐
在实际项目中,我们可能需要将标签栏与选取器结合使用,例如在一个标签页中包含一个日期选取器,让用户在不同的功能区域中选择特定的日期。这可以通过将`UIDatePicker`作为子视图添加到某个`UIViewController`的视图...
WPF自定义控件例子,包括标签栏颜色选取,可自动跳转定义的图片和Textblock块内容
7标签栏与选取器 8表示图简介 9导航控制器和师表图 10应用吃呢光绪设置和用户默认设置 11基本数据持久性 12使用Quartz和OpenGL绘图 13轻击,触摸和受势 14使用 CoreLocation定位功能 15加速计 16iphone照相机和照片库...
这个压缩包“基于jQuery的简单的tab标签栏切换效果的实现代码.zip”提供了使用JavaScript库jQuery来创建这种效果的示例代码。jQuery是一个强大的JavaScript库,简化了DOM操作、事件处理和动画制作等任务,因此它是...
**标签解析:** "文本插件" 这个标签表明我们将专注于那些专门处理文本的JavaScript插件,这可能包括文本选取、格式化、搜索、替换等功能。 **文件名称列表:** "rangy-master" 这个文件名很可能是指一个名为Rangy...
第七章 标签栏与选取器 第八章 表示图简介 第九章 导航控制器和表示图 第十章 应用程序设置和用户默认设置 第十一章 基本数据持久性 第十二章 使用Quartz和OpenGL绘制 第十三章 轻击、触摸和手势 第十四章 我在哪里...
1. **选择器(Selectors)**:JQuery的选择器类似于CSS,用于选取HTML元素。例如,`$("#myTab")`会选择ID为"myTab"的元素。我们可以利用选择器获取或操作一组特定的元素。 2. **事件(Events)**:JQuery提供了一...
"通过调用百度地图直接在自己的页面中选取经纬度"这一技术正是为了解决这一需求而存在的。它允许开发者将百度地图API集成到自己的网页中,使用户能够在熟悉的地图界面内选择位置,从而获取精确的地理坐标。 首先,...
第7章 标签栏与选取器 129 第8章 表视图简介 172 第9章 导航控制器和表视图 222 第10章 storyboard 284 第11章 iPad开发注意事项 307 第12章 应用程序设置和用户默认设置 330 第13章 保存数据 358 第14章 ...
5. **计算与布局**:计算标签栏的总宽度和可视区域宽度,以确定是否需要启用左右滚动。如果标签栏过宽,可以添加左右箭头,通过点击箭头实现标签的平滑滚动。 6. **动画效果**:jQuery的动画功能强大,可以使用`...
7. **插件开发与使用**:jQuery社区提供了大量插件,如`jQuery-360nav`可能是一个专门用于创建360度旋转导航栏的插件。使用插件可以节省开发时间,提升项目效率。了解如何引入和配置这些插件也是重要的技能。 8. **...
- **第三方库**:Android社区有许多优秀的库可以帮助实现这一功能,如TabLayout(官方支持的标签栏组件)、Material Design Components库中的TabLayout等,它们提供了许多预设的动画和样式,可以快速集成到项目中。...
案例中可能会使用选择器(如类选择器、ID选择器等)、属性(如颜色、字体、大小、位置等)以及盒模型(边距、填充、边框、内容区域)来设计商品栏的外观。 4. **CSS布局**:为了实现商品栏的切换效果,可能涉及到...
1. **选择器**:jQuery提供了丰富的选择器用于选取HTML元素,如`$("#id")`选择ID为指定值的元素,`$(".class")`选择所有类名为指定值的元素。 2. **事件绑定**:使用`on()`方法可以绑定点击事件,如`$("#tab1").on...
这个文件夹可能包含了默认模板下的图片资源,这些图片可能会与样式标签一起使用,用于布局、背景、按钮、图标等设计元素。将此文件夹放置在"/template/default/"路径下,确保了图片资源能够被正确引用,使得网站在...
### Vim编辑器使用教程知识点概览 #### 一、初步知识 **1.1 关于本手册** - **手册结构**: 手册分为两大部分,一部分是基础教程,适合新手入门;另一部分则是深入讲解Vim的各项高级特性,适合有一定经验的用户...
状态栏通常位于软件界面的底部,可以显示各种与当前操作相关的状态信息,如光标位置、字符计数、当前编码格式等,为用户提供更多的交互反馈。 描述中的“一个基于记事本的程序,能够实现复制,粘贴,状态栏,查找”...
第7章 标签栏与选取器 第8章 表视图简介 第9章 导航控制器和表视图 第10章 应用程序设置和用户默认设置 第11章 基本数据持久性 第12章 使用Quartz和OpenGL绘图 第13章 轻击、触摸和手势 第14章 我在...
Target 选择器用于选取当前活动的目标元素,其 id 与当前 URL 片段匹配。例如,heading-2:target{ },这里的 Target 就是指的 h2。我们可以使用 Target 选择器来设置目标元素跳转后的样式。 让我们来看一个实战示例...