zoukankan      html  css  js  c++  java
  • [翻译] MGConferenceDatePicker

    MGConferenceDatePicker

    https://github.com/matteogobbi/MGConferenceDatePicker

    MGConferenceDatePicker is an object wich extend a UIView furnishing a very nice type of data picker.

    MGConferenceDatePicker是一个对象,扩展了UIView并展示出一个样式华丽的时间选择器.

    Info

    This code must be used under ARC. If your code doesn't use ARC you can mark this source with the compiler flag -fobjc-arc

    这份代码是在ARC下使用的.如果你的项目不支持ARC,你可以加一个编译标签-fobjc-arc

     

    Example Usage

    In the package is included the project to test the object. This is an easy example to init the control from code:

    zip包中已经包含了使用样例,使用起来是非常简单的:

        //New view controller
        UIViewController *pickerViewController = [[UIViewController alloc] init];
    
        //Init the datePicker view and set self as delegate
        MGConferenceDatePicker *datePicker = [[MGConferenceDatePicker alloc] initWithFrame:self.view.bounds];
        [datePicker setDelegate:self];
    
        //OPTIONAL: Choose the background color
        [datePicker setBackgroundColor:[UIColor whiteColor]];
    
        //Set the data picker as view of the new view controller
        [pickerViewController setView:datePicker];
    
        //Present the view controller
        [self presentViewController:pickerViewController animated:YES completion:nil];
    

    Or you are also able to set the view directly in the NIB or in the XIB file and simply just set the delegate from code.

    See the example's project.

    或者,你也可以将这个view直接设置到NIB或者XIB文件中,在代码中设置代理即可.

    附录:

    -以下是封装的一些细节-

    一个文件中封装了3个类:

    界面上的选择由4个scrollView组成:

    总结:

    这个MGConferenceDatePicker极具学习价值:)

  • 相关阅读:
    贪心——poj百炼3468:电池寿命
    贪心——部分背包
    C++编程规范
    调和级数求和
    人工神经网络
    Latex各种符号
    poj1088 滑雪,dp
    数据挖掘建模过程
    Java MyEclipse:The type java.lang.CharSequence cannot be resolved. It is indirectly referen
    Java调用阿里云短信接口发送手机验证码
  • 原文地址:https://www.cnblogs.com/YouXianMing/p/3857757.html
Copyright © 2011-2022 走看看