1、完成後果
解釋:點擊隨機按鈕,可以或許主動拔取,下方數據主動刷新。
2、完成思緒
1.picker view的有默許高度為162,弗成修正。
2.顯示數據,須要設置數據源,也有兩種方法(成為數據源,遵照協定)
3.完成數據源外面的兩個辦法
1)前往一共有若干列
2)在這一列中一共有若干行
4.經由過程署理告知它那一列的哪一行顯示哪些數據(設置其署理為掌握器)
5.應用懶加載,加載一切的食品
6.完成根本數據的展現(列,行,內容)
7.主動更新選中的食品信息。(應用一個年夜的view,下面放6個label)
1)給3個lab賦值,添加三個屬性(生果,主菜,飲料)
2)監聽選中了哪一行(監聽有兩種思惟,一個是署理,一個是告訴),先檢查有無署理的辦法(didselectRow)這個辦法被選中了某一行的的時刻挪用,會將選中的列號和行號當作參數傳入出來。可以或許獲得到對應的列號和行號。
3)完成選中時挪用的監聽辦法
4)在viewdidload外面設置默許選中的內容,設置為[0][1]
5)進步可擴大性(手動的挪用那幾行-應用一個for輪回)
8.隨機功效的完成
1)怎樣讓代碼選中某一行(selectrow),挪用該辦法可以指定讓它轉動到那一列的哪一行
2)完成頭部的功效(應用一個年夜的uiview,外面放兩個子控件)
3)設置高度44,怎樣讓隨機按鈕的地位居中?可以設置它的高度為44,最年夜的Y值為64。
4)設置隨機按鈕的點擊事宜randomFood,讓pickerview自動選中某一行。
5)生成隨機數的辦法(生成隨機數的限制,不跨越以後的總數)
6)缺陷,未來數據轉變以後,會報錯(模於幾)[self.foods[0] count]?為何不消簡寫 點語法?(切紀要記住)
7)隨機數的處置不嚴謹,有的時刻生成的隨機數能夠是相等的,那末如許的話列就不會轉動,獲得到對應列的數據總數,若何拿到上一次發生的隨機值(也就是以後選中的行),比擬上一次的行號和以後生成的隨機數能否雷同,假如雷同則重寫生成
9.處理別的一個成績,上面的數據隨機刷新掉效了,經由過程代碼選中某一行。
3、完成代碼示例
1.項目文檔構造和storyboard文件
storyboard文件年夜的界面設置:
2.代碼示例
主掌握器文件代碼:
//
// YYViewController.m
// 06-簡略選菜體系的完成
//
// Created by apple on 14-6-5.
// Copyright (c) 2014年 itcase. All rights reserved.
//
#import "YYViewController.h"
//遵照數據源和署理協定
@interface YYViewController ()<UIPickerViewDataSource,UIPickerViewDelegate>
/**
* 生果
*/
@property (strong, nonatomic) IBOutlet UILabel *fruitLab;
/**
* 主菜
*/
@property (strong, nonatomic) IBOutlet UILabel *stapleLab;
/**
* 飲料
*/
@property (strong, nonatomic) IBOutlet UILabel *drinkLab;
/**
* 保留一切的數據
*/
@property(nonatomic,strong)NSArray *foods;
@property (weak, nonatomic) IBOutlet UIPickerView *pickerView;
- (IBAction)randomFood:(id)sender;
@end
@implementation YYViewController
- (void)viewDidLoad
{
[super viewDidLoad];
//在這裡設置下方數據刷新部門的初始顯示
for (int component = 0; component<self.foods.count; component++) {
[self pickerView:nil didSelectRow:0 inComponent:component];
}
}
#pragma mark-應用懶加載,把數據信息加載出去
-(NSArray *)foods
{
if (_foods==nil) {
NSString *fullpath=[[NSBundle mainBundle]pathForResource:@"foods.plist" ofType:nil];
NSArray *arrayM=[NSArray arrayWithContentsOfFile:fullpath];
_foods=arrayM;
}
return _foods;
}
#pragma mark-處置隨機按鈕的點擊事宜
- (IBAction)randomFood:(id)sender {
// 讓pickerView自動選中某一行
// 讓pickerView選中inComponent列的Row行
// [self.pickerView selectRow:1 inComponent:0 animated:YES];
/*
[self.pickerView selectRow: arc4random() % 12 inComponent:0 animated:YES];
[self.pickerView selectRow: arc4random() % 15 inComponent:1 animated:YES];
[self.pickerView selectRow: arc4random() % 10 inComponent:2 animated:YES];
*/
// [self.foods objectAtIndex:0]; == self.foods[0];
// [self.foods[0] count];
/*
// 依據每列的元素個數生成隨機值
[self.pickerView selectRow: arc4random() % [self.foods[0] count] inComponent:0 animated:YES];
[self.pickerView selectRow: arc4random() % [self.foods[1] count] inComponent:1 animated:YES];
[self.pickerView selectRow: arc4random() % [self.foods[2] count] inComponent:2 animated:YES];
*/
//設置一個隨機數
for (int component=0; component<self.foods.count; component++) {
//獲得以後列對應的數據元素的個數
int total=[self.foods[component] count];
//依據每列的總數生成隨機數(以後生成的隨機數)
int randomNumber=arc4random()%total;
//獲得以後選中的行(上一次隨機後挪動到的行)
int oldRow=[self.pickerView selectedRoWinComponent:0];
//比擬上一次的行號和以後生成的隨機數能否雷同,假如雷同的話則從新生成
while (oldRow==randomNumber) {
randomNumber=arc4random()%total;
}
//讓pickerview轉動到指定的某一行
[self.pickerView selectRow:randomNumber inComponent:component animated:YES];
//模仿,經由過程代碼選中某一行
[self pickerView:nil didSelectRow:randomNumber inComponent:component];
}
}
#pragma mark- 設置數據
//一共若干列
-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
return self.foods.count;
}
//每列對應若干行
-(NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{
//1.獲得以後的列
NSArray *arayM= self.foods[component];
//2.前往以後列對應的行數
return arayM.count;
}
//每列每行對應顯示的數據是甚麼
-(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
//1.獲得以後的列
NSArray *arayM= self.foods[component];
//2.獲得以後列對應的行的數據
NSString *name=arayM[row];
return name;
}
#pragma mark-設置下方的數據刷新
// 被選中了pickerView的某一行的時刻挪用
// 會將選中的列號和行號作為參數傳入
// 只要經由過程手指選中某一行的時刻才會挪用
-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
//獲得對應列,對應行的數據
NSString *name=self.foods[component][row];
//賦值
if (0==component) {
self.fruitLab.text=name;
}else if(1==component)
{
self.stapleLab.text=name;
}else
self.drinkLab.text=name;
}
#pragma mark-隱蔽狀況欄
-(BOOL)prefeXmlRss/ target=_blank class=infotextkey>XmlRss/ target=_blank class=infotextkey>RsstatusBarHidden
{
return YES;
}
@end
4、主要彌補
請留意在代碼完成中為何應用 [self.foods[0] count]; 而不是直接應用點語法self.foods[0].count取值。
[self.foods objectAtIndex:0]; == self.foods[0];//這兩句的後果等價,而self挪用objectAtIndex:0這個辦法,前往的是一個id類型的全能指針,它的真實類型要到現實運轉的時刻能力檢測獲得,是以不克不及直接應用self.foods[0].count。
【iOS開辟中應用Picker View完成一個點菜運用的UI示例】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!