gpt4 book ai didi

ios - UITextfield 不能作为 iOS 7 中 UISearchBar 的 subview ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:08:45 26 4
gpt4 key购买 nike

此代码在 iOS 6 中运行良好,但在 iOS 7 中,导航栏中的文本字段是灰色的,并且不可点击?看看这张图的区别

enter image description here

可能出了什么问题?我不知道他们在 iOS 7 中到底做了什么改变,也不知道从哪里开始寻找解决这个问题的方法......

/问候

UITextField *sbTextField = (UITextField *)[searchBar.subviews lastObject];
[sbTextField removeFromSuperview];

CGRect rect = searchBar.frame;
rect.size.height = 32;
rect.size.width = 210;
sbTextField.frame = rect;
// [sbTextField setKeyboardType:UIKeyboardTypeNumbersAndPunctuation]; Not working in iOS7
// [sbTextField setPlaceholder:NSLocalizedString(@"HintSearchExercise", nil)]; Not working in iOS 7

[sbTextField setAutoresizingMask:UIViewAutoresizingFlexibleBottomMargin];
[searchBar removeFromSuperview];

UIBarButtonItem *searchBarNavigationItem = [[UIBarButtonItem alloc] initWithCustomView:sbTextField];

[[self navigationItem] setLeftBarButtonItem:searchBarNavigationItem];

最佳答案

在 ios7 中,[searchBar.subviews lastObject] 不是文本字段,而是一个 UIView 实例,作为围绕控制。

cocktailicious 有同样的问题,我计划在 UISearchBar 上使用以下类别:

@interface UISearchBar (Workarounds)
@property (readonly, nonatomic) UITextField *textField;
@end

@implementation UISearchBar (Workarounds)
- (UITextField *)textField
{
for (UIView *view in [self subcontrols]) {
if ([view isKindOfClass:[UITextField class]]) {
return (UITextField *)view;
}
}
return nil;
}

- (NSArray *)subcontrols
{
return self.subviews.count == 1 ? [self.subviews.firstObject subviews] : self.subviews;
}
@end

- subcontrols 方法在这里起到了作用。

关于ios - UITextfield 不能作为 iOS 7 中 UISearchBar 的 subview ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18993773/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com