zoukankan      html  css  js  c++  java
  • iphone 自定义UISwitch

    链接地址:http://www.cnblogs.com/mainPage/archive/2010/10/28/1863472.html

    修改UISwitch的标题,实现自定义UISwitch方法有两种: 

    1.使用类别扩展UISwitch。 

    如下:

     下面是UISwitch.h文件:

    #import <UIKit/UIKit.h>

    @interface UISwitch (tagged)

    + (UISwitch *) switchWithLeftText: (NSString *) tag1 andRight: (NSString *) tag2;

    @property (nonatomicreadonly) UILabel *label1;

    @property (nonatomicreadonly) UILabel *label2;

    @end

    UISwitch.m文件:

    #import "UISwitch-Extended.h"

    #define TAG_OFFSET 900

    @implementation UISwitch (tagged)

    - (void) spelunkAndTag: (UIView *) aView withCount:(int *) count

    {

     for (UIView *subview in [aView subviews])

     {

     if ([subview isKindOfClass:[UILabel class]])

     {

     *count += 1;

     [subview setTag:(TAG_OFFSET + *count)];

     }

     else 

     [self spelunkAndTag:subview withCount:count];

     }

    }

    - (UILabel *) label1 

     return (UILabel *) [self viewWithTag:TAG_OFFSET + 1]; 

    }

    - (UILabel *) label2 

    return (UILabel *) [self viewWithTag:TAG_OFFSET + 2]; 

    }

    + (UISwitch *) switchWithLeftText: (NSString *) tag1 andRight: (NSString *) tag2

    {

     UISwitch *switchView = [[UISwitch allocinitWithFrame:CGRectZero];

    int labelCount = 0;

    [switchView spelunkAndTag:switchView withCount:&labelCount];

    if (labelCount == 2)

    {

    [switchView.label1 setText:tag1];

    [switchView.label2 setText:tag2];

    }

    return [switchView autorelease];

    }

    @end

    2.还有一种方法,这种方法比较简单,但比较难懂,我不甚理解。


     

     

    UISwitch *isFooOrBar=[[UISwitch allocinit];


    ((UILabel *)[[[[[[isFooOrBar subviewslastObjectsubviewsobjectAtIndex:2subviews]objectAtIndex:0]).text = @"Foo";

    ((UILabel *)[[[[[[isFooOrBar subviewslastObjectsubviewsobjectAtIndex:2subviews]objectAtIndex:1]).text = @"Bar";

  • 相关阅读:
    Redis常见的应用场景解析
    技术知识和稳定的系统之间,可能还差这些?
    学会数据库读写分离、分表分库——用Mycat,这一篇就够了!
    程序员也是弱势群体?——从WePhone开发者事件说起
    系统日志管理那点事
    我的Markdown的利器——Markdown Here、有道云笔记、iPic
    推荐几本产品类的书
    华为云的API调用实践(python版本)
    阿里云 API调用实践(python语言)
    HA总结:AWS 网络连接
  • 原文地址:https://www.cnblogs.com/xingchen/p/2240225.html
Copyright © 2011-2022 走看看