iOS開發UI篇—使用picker View控制項完成一個簡單的選餐應用

來源:互聯網
上載者:User

標籤:

iOS開發UI篇—使用picker View控制項完成一個簡單的選餐應用

一、實現效果

  說明:點擊隨機按鈕,能夠自動選取,下方資料自動重新整理。

二、實現思路

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.解決另外一個問題,下面的資料隨機重新整理失效了,通過代碼選中某一行。  三、實現程式碼範例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)prefersStatusBarHidden{    return YES;}@end

四、重要補充

請注意在代碼實現中為什麼使用 [self.foods[0] count]; 而不是直接使用點文法self.foods[0].count取值。     

[self.foods objectAtIndex:0]; == self.foods[0];//這兩句的效果等價,而self調用objectAtIndex:0這個方法,返回的是一個id類型的萬能指標,它的真實類型要到實際啟動並執行時候才能檢測得到,因此不能直接使用self.foods[0].count。

iOS開發UI篇—使用picker View控制項完成一個簡單的選餐應用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.