zoukankan      html  css  js  c++  java
  • UIPickerView常见属性、常见方法(包括代理方法和数据源方法)的一些说明

    .UIPickerView

    1.UIPickerView的常见属性

    // 数据源(用来告诉UIPickerView有多少列多少行)

    @property(nonatomic,assign) id<UIPickerViewDataSource> dataSource;

    // 代理(用来告诉UIPickerView1列的每1行显示什么内容,监听UIPickerView的选择)

    @property(nonatomic,assign) id<UIPickerViewDelegate>   delegate;

    // 是否要显示选中的指示器

    @property(nonatomic)        BOOL                       showsSelectionIndicator;

    // 一共有多少列

    @property(nonatomic,readonly) NSInteger numberOfComponents;

     

    2.UIPickerView的常见方法

    // 重新刷新所有列

    - (void)reloadAllComponents;

    // 重新刷新第component

    - (void)reloadComponent:(NSInteger)component;

     

    // 主动选中第component列的第row

    - (void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL)animated;

     

    // 获得第component列的当前选中的行号

    - (NSInteger)selectedRowInComponent:(NSInteger)component;

     

    3.数据源方法(UIPickerViewDataSource)

    //  一共有多少列

    - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView;

    //  component列一共有多少行

    - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component;

     

    4.代理方法(UIPickerViewDelegate)

    //  component列的宽度是多少

    - (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component;

    //  component列的行高是多少

    - (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component;

     

    //  component列第row行显示什么文字

    - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;

     

    //  component列第row行显示怎样的view(内容)

    - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view;

     

    //  选中了pickerView的第component列第row

    - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component;

    没有去尝试,那么连后悔的资格都没有
  • 相关阅读:
    一个Winform下DataGridView控件外观的自定义类
    从以往子类化跟踪MouseLeave深入讨论VB6的自定义Hook类
    使用VB6写一个自定义的进度信息框窗口
    C#研究OpenXML之路(4-使用第三方库)
    Access SQL实现连续及不连续Rank排名
    C#研究OpenXML之路(3-OpenXMLSDKToolV25.msi)
    C#研究OpenXML之路(2-DocumentFormat.OpenXml命名空间)
    C#研究OpenXML之路(1-新建工作簿文件)
    统一我的博客文章的CSS样式代码
    C#图片灰度处理(位深度24→位深度8)
  • 原文地址:https://www.cnblogs.com/li-yongjie/p/4858647.html
Copyright © 2011-2022 走看看