Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过此代码在右侧的搜索栏中添加一个按钮
[searchtextfield setRightView:customButton]; [searchtextfield setRightViewMode:UITextFieldViewModeAlways];
它适用于 iOS 6,但在 iOS 7 中我看不到它。知道如何在 iOS 7 中完成它。
如果您有白色背景,那么可能是您看不到搜索栏的问题,我遇到了同样的问题,但设法通过设置表格视图背景添加此代码来解决这个问题。
UIView *backgroundView = [[UIView alloc] initWithFrame:self.tableView.bounds]; backgroundView.backgroundColor = [UIColor clearColor]; self.tableView.backgroundView = backgroundView;
希望它会有所帮助。谢谢。