3

使用新的 iOS 13,我尝试使用更改 UISearchBar textField 属性时崩溃了valueForKey:@"_searchField"

现在看来,苹果改变了一些东西。

我已经使用以下自定义方法创建了 UIView 的子类,现在它似乎可以工作了!

- (UIView *)findSubview:(NSString *)name resursion:(BOOL)resursion
{
    Class class = NSClassFromString(name);
    for (UIView *subview in self.subviews) {
        if ([subview isKindOfClass:class]) {
            return subview;
        }
    }

    if (resursion) {
        for (UIView *subview in self.subviews) {
            UIView *tempView = [subview findSubview:name resursion:resursion];
            if (tempView) {
                return tempView;
            }
        }
    }

    return nil;
} 

您可以通过这种方式简单地调用此方法来更改 UITextField 属性:

UITextField *textField = (UITextField*)[self findSubview:@"UITextField" resursion:YES];

显然这是一个 Objective-c 片段,如果有人知道如何在 swift 中编写相同的代码,可以将其添加到答案中。

快乐编码!

4

3 回答 3

10

我不确定它是否会有所帮助,但 UISearchBar 有一个新searchTextField属性允许您访问它的 UISearchTextField,进而访问它的 UITextField:

let searchBar = UISearchBar()
var searchField : UITextField
if #available(iOS 13.0, *) {
    searchField = searchBar.searchTextField
} else {
    searchField = //Your original method
}
于 2019-06-19T15:57:23.847 回答
2

您可以使用下面的方法来做到这一点extension

extension UISearchBar {

    func getAllSubview<T : UIView>(type : T.Type) -> [T]{
        var all = [T]()
        func getSubview(view: UIView) {
            if let aView = view as? T{
                all.append(aView)
            }
            guard view.subviews.count>0 else { return }
            view.subviews.forEach{ getSubview(view: $0) }
        }
        getSubview(view: self)
        return all
    }
}

像这样使用:

self.searchBar.getAllSubview(type: UITextField.self).first

输出:

<UISearchBarTextField: 0x7fc68d850a00; frame = (0 0; 0 0); text = ''; opaque = NO; layer = <CALayer: 0x600000d29aa0>>
于 2019-06-19T09:54:36.497 回答
1

我的项目在Objective c中,我也需要支持XCode10,所以,经过两天的头痛后,我节省了一天:

txfSearchField = [_searchBar valueForKey:@"searchField"];

只需要从旧代码中删除_ !!!

Swift中,你也可以使用相同的。

希望它会帮助别人!

于 2019-11-12T15:24:30.897 回答