我可以为 stringTag 自定义现有的 viewWithTag:(NSInteger) 方法吗?

Can I customize existing viewWithTag:(NSInteger) method for stringTag?

请帮助我,我一直在自定义 UIView class 以将 NSString 值设置为标签,但是如何从视图 hierarchy.In UIView class 默认方法中获取该视图获得视图是 viewWithTag:(NSInteger).

请看下面代码

#import <UIKit/UIKit.h>
@interface UIView (StringTag)
@property (nonatomic, copy) NSString *tagString;
@end

#import "UIView+StringTag.h"
#import <objc/runtime.h> 

static const void *tagKey = &tagKey;

@implementation UIView (StringTag)

- (void)setTagString:(NSString *)tagString
{
objc_setAssociatedObject(self, tagKey, tagString,OBJC_ASSOCIATION_COPY_NONATOMIC);
}

- (id)tagString
{
return objc_getAssociatedObject(self, tagKey);
}
@end

我想要一个像 viewWithStringTag:(NSString *)stringTag 的方法。

谢谢,

使用递归搜索,包括 self

#import <UIKit/UIKit.h>    

@interface UIView (StringTag)
@property (nonatomic, copy) NSString *tagString;    

- (UIView *)viewWithStringTag:(NSString *)strTag;    

@end    

#import "UIView+StringTag.h"
#import <objc/runtime.h>     

static const void *tagKey = &tagKey;    

@implementation UIView (StringTag)    

- (void)setTagString:(NSString *)tagString
{
    objc_setAssociatedObject(self, tagKey, tagString,OBJC_ASSOCIATION_COPY_NONATOMIC);
}    

- (id)tagString
{
    return objc_getAssociatedObject(self, tagKey);
}    

- (UIView *)viewWithStringTag:(NSString *)strTag{
    if ([self.tagString isEqual:strTag]){
        return self;
    }
    if (!self.subviews.count){
        return nil;
    }
    for (UIView *subview in self.subviews){
        UIView *targetView = [subview viewWithStringTag:strTag];
        if (targetView){
            return targetView;
        }
    }
    return nil;
}    

@end

这是我的测试代码

- (void)viewDidLoad {
    [super viewDidLoad];

    UIView *aView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
    aView.tagString = @"aView";
    UIView *bView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    bView.tagString = @"bView";
    [self.view addSubview:aView];
    [aView addSubview:bView];

    UIView *targetView = [self.view viewWithStringTag:@"bView"];

    NSLog(@"%@", targetView);
    // <UIView: 0x7f933bc21e50; frame = (0 0; 100 100); layer = <CALayer: 0x7f933bc1c430>>
}