iOS-关于继承、分类

一、前言

笔者最近一直忙于开发业务需求,频繁的使用着继承、分类,切身的体会到很多需求用这两种方案都可以解决,这就面临着幸福二选一的问题了!但越到后面,越能感觉到其明显的区别,于是有所感~


继承与分类

二、需求简要

iOS 时间选择器(UIDatePicker)大家都有用过吧,很方便对吧,那性别选择、省市区选择、付款方式选择等功能,我们如何实现类似的效果呢?用UIPickerView实现单选择功能,就能实现类似的用户体验。

三、应用场景

笔者最近遇到的开发需求是产品的属性选择,比如我们现在要发起订单(我们可以类比一下淘宝),选择了佳得乐,这时候我们还要选择口味(蓝莓、鲜橙、哈密瓜等),然后还可以选择净含量等。

demo

四、代码实现

由于在实际开发中,通常都是与UITextField联合实现的,笔者就选择UITextField为最小颗粒度,对其进行处理。

  • 1.使用继承方案

LYTextField.h

#import <UIKit/UIKit.h>

@interface LYTextField : UITextField

@property (nonatomic, strong) NSArray *dataArr;

@end

LYTextField.m

#import "LYTextField.h"

@interface LYTextField ()
<UIPickerViewDelegate, UIPickerViewDataSource>

@property (nonatomic, weak) UIPickerView *pickerView;

@end

@implementation LYTextField

- (instancetype)init {
    self = [super init];
    if (self) {
        [self configFoundation];
    }
    return self;
}

- (instancetype)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    if (self) {
        [self configFoundation];
    }
    return self;
}

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        [self configFoundation];
    }
    return self;
}

- (void)configFoundation {
    
    CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;
    
    UIView *optionView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, screenWidth, 44)];
    optionView.backgroundColor = [UIColor orangeColor];

    UIButton *cancelBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    [cancelBtn setFrame:CGRectMake(0, 0, 70, 44)];
    [cancelBtn setTitle:@"取消" forState:UIControlStateNormal];
    [cancelBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
    [cancelBtn.titleLabel setFont:[UIFont systemFontOfSize:17.0]];
    [cancelBtn addTarget:self action:@selector(onClickCancelBtn) forControlEvents:UIControlEventTouchUpInside];
    [optionView addSubview:cancelBtn];
    
    UIButton *finishBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    [finishBtn setFrame:CGRectMake(screenWidth - 70, 0, 70, 44)];
    [finishBtn setTitle:@"完成" forState:UIControlStateNormal];
    [finishBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
    [finishBtn.titleLabel setFont:[UIFont systemFontOfSize:17.0]];
    [finishBtn addTarget:self action:@selector(onClickFinishBtn) forControlEvents:UIControlEventTouchUpInside];
    [optionView addSubview:finishBtn];
    
    UILabel *titleL = [[UILabel alloc]initWithFrame:CGRectMake(screenWidth / 2.0 - 75.0, 0, 150, 44)];
    titleL.textAlignment = NSTextAlignmentCenter;
    titleL.text = @"请选择类型";
    [optionView addSubview:titleL];
    
    self.inputAccessoryView = optionView;
    
    UIPickerView *pickerView = [[UIPickerView alloc] init];
    pickerView.dataSource = self;
    pickerView.delegate = self;
    pickerView.backgroundColor = [UIColor whiteColor];
    self.pickerView = pickerView;
    self.inputView = pickerView;
}

- (void)onClickCancelBtn {
    [self resignFirstResponder];
}

- (void)onClickFinishBtn {
    
    NSInteger index = [self.pickerView selectedRowInComponent:0];
    if (index < self.dataArr.count) {
        self.text = self.dataArr[index];
    }
    [self resignFirstResponder];
}

#pragma mark - Picker view data source && delegate
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
    return 1;
}

- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
    return self.dataArr.count;
}

- (NSString *)pickerView:(UIPickerView *)pickerView
             titleForRow:(NSInteger)row
            forComponent:(NSInteger)component {
    
    if (row < self.dataArr.count) {
        return self.dataArr[row];
    }
    
    return @"";
}
@end
  • 2.使用分类方案

UITextField+Tool.h

#import <UIKit/UIKit.h>

typedef void(^DidSelectedBlock)(NSString *value);

@interface UITextField (Tool)
<UIPickerViewDelegate, UIPickerViewDataSource>

- (void)configSigleChoiceWith:(NSArray *)preData completion:(DidSelectedBlock)completion;

- (void)configValue:(NSString *)value;

@end

UITextField+Tool.m

#import "UITextField+Tool.h"
#import <objc/runtime.h>

@interface UITextField ()

@property (nonatomic, strong) NSArray *choiceData;

@property (nonatomic, copy) DidSelectedBlock didSelectedBlock;

@end

NSString *const KeyChoiceData = @"KeyChoiceData";
NSString *const KeyDidSelectedBlock = @"KeyDidSelectedBlock";

@implementation UITextField (Tool)

- (NSArray *)choiceData {
    return objc_getAssociatedObject(self, &KeyChoiceData);
}

- (void)setChoiceData:(NSArray *)choiceData {
    objc_setAssociatedObject(self, &KeyChoiceData, choiceData, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

- (DidSelectedBlock)didSelectedBlock {
    return objc_getAssociatedObject(self, &KeyDidSelectedBlock);
}

- (void)setDidSelectedBlock:(DidSelectedBlock)didSelectedBlock {
    objc_setAssociatedObject(self, &KeyDidSelectedBlock, didSelectedBlock, OBJC_ASSOCIATION_COPY_NONATOMIC);
}

- (void)configSigleChoiceWith:(NSArray *)preData completion:(DidSelectedBlock)completion {
    self.choiceData = [preData mutableCopy];
    self.didSelectedBlock = completion;
    
    [self setSelectedList];
}

- (void)configValue:(NSString *)value {
    self.text = value;
    if (self.didSelectedBlock) {
        self.didSelectedBlock(value);
    }
    if (value.length == 0) {
        return;
    }
    for (NSInteger i = 0; i < self.choiceData.count; i ++) {
        NSString *itemStr = self.choiceData[I];
        if ([value isEqualToString:itemStr]) {
            UIPickerView *pickerView = (UIPickerView *)self.inputView;
            [pickerView selectRow:i inComponent:0 animated:YES];
            break;
        }
    }
}

- (void)setSelectedList {
    
    CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;
    
    UIView *optionView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, screenWidth, 44)];
    optionView.backgroundColor = [UIColor orangeColor];
    
    UIButton *cancelBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    [cancelBtn setFrame:CGRectMake(0, 0, 70, 44)];
    [cancelBtn setTitle:@"取消" forState:UIControlStateNormal];
    [cancelBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
    [cancelBtn.titleLabel setFont:[UIFont systemFontOfSize:17.0]];
    [cancelBtn addTarget:self action:@selector(onClickCancelBtn) forControlEvents:UIControlEventTouchUpInside];
    [optionView addSubview:cancelBtn];
    
    UIButton *finishBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    [finishBtn setFrame:CGRectMake(screenWidth - 70, 0, 70, 44)];
    [finishBtn setTitle:@"完成" forState:UIControlStateNormal];
    [finishBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
    [finishBtn.titleLabel setFont:[UIFont systemFontOfSize:17.0]];
    [finishBtn addTarget:self action:@selector(onClickFinishBtn) forControlEvents:UIControlEventTouchUpInside];
    [optionView addSubview:finishBtn];
    
    UILabel *titleL = [[UILabel alloc]initWithFrame:CGRectMake(screenWidth / 2.0 - 75.0, 0, 150, 44)];
    titleL.textAlignment = NSTextAlignmentCenter;
    titleL.text = @"请选择类型";
    [optionView addSubview:titleL];
    
    self.inputAccessoryView = optionView;
    
    UIPickerView *pickerView = [[UIPickerView alloc] init];
    pickerView.dataSource = self;
    pickerView.delegate = self;
    pickerView.backgroundColor = [UIColor whiteColor];
    
    self.inputView = pickerView;
}

#pragma mark - Actions

- (void)onClickCancelBtn {
    [self resignFirstResponder];
}

- (void)onClickFinishBtn {
    
    UIPickerView *pickerView = (UIPickerView *)self.inputView;
    
    NSInteger index = [pickerView selectedRowInComponent:0];
    
    if (index < self.choiceData.count) {
        
        [self configValue:self.choiceData[index]];
    }
    [self resignFirstResponder];
}

#pragma mark - Picker view data source && delegate
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
    return 1;
}

- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
    return self.choiceData.count;
}

- (NSString *)pickerView:(UIPickerView *)pickerView
             titleForRow:(NSInteger)row
            forComponent:(NSInteger)component {
    
    if (row < self.choiceData.count) {
        return self.choiceData[row];
    }
    
    return @"";
}

@end
  • 3.使用代码
- (void)configTextFieldDemo {
    
    CGFloat screenWidth = self.view.bounds.size.width;
    
    LYTextField *textField1 = [[LYTextField alloc] init];
    textField1.bounds = CGRectMake(0, 0, 200, 44);
    textField1.borderStyle = UITextBorderStyleRoundedRect;
    textField1.center = CGPointMake(screenWidth/2, 100);
    textField1.placeholder = @"请选择口味";
    textField1.dataArr = @[@"鲜橙", @"哈密瓜", @"蓝莓"];
    [self.view addSubview:textField1];
    
    UITextField *textField2 = [[UITextField alloc] init];
    textField2.bounds = CGRectMake(0, 0, 200, 44);
    textField2.borderStyle = UITextBorderStyleRoundedRect;
    textField2.center = CGPointMake(screenWidth/2, 200);
    textField2.placeholder = @"请选择净含量";
    [self.view addSubview:textField2];
    NSArray *dataArr = @[@"250 mL", @"500 mL", @"1000 mL"];
    [textField2 configSigleChoiceWith:dataArr completion:nil];
}

五、写在最后

  • 上例中,分类明显的优势在于可以孤立存在,也是最干净的编码。其实就是在一个对象的基础上增加额外的功能形成另外一个对象。
  • 关于继承毫无疑问最大的优点是代码复用。但是很多时候继承也可能会被无止境的滥用,造成代码结构散乱,后期维护困难等,其中有可能带来最大的问题是高耦合,依赖性太强。
  • 实际开发中如果继承超过2层的时候,就要慎重了,因为这可能是滥用继承的开始。
  • 分类是一种平行的架构,相互独立存在,可移植性强,继承是纵向的架构,相互依赖,缺一个,整个架构就断层了。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343