if(IOS7BC){
UIView *topView = VTOSearchBar.subviews[0];
UIButton *cancelButton;
for (UIView *subView in topView.subviews) {
if([subView isKindOfClass:[NSClassFromString(@"UINavigationButton") class]]) {
cancelButton = (UIButton*)subView;
[cancelButton setBackgroundImage:[UIImage imageNamed:@"xxx.png"] forState:UIControlStateNormal];
[cancelButton setEnabled:YES];
cancelButton.userInteractionEnabled = YES;
[cancelButton setTitle:@"發布活動" forState:UIControlStateNormal];
}
}
}else{
[VTOSearchBar setTintColor:Bar_COLOR];
for(id cancelbutton in [VTOSearchBar subviews])//將取消鍵換成發布活動
{
if([cancelbutton isKindOfClass:[UIButton class]])
{
UIButton *btn = (UIButton *)cancelbutton;
[btn setEnabled:YES];
btn.userInteractionEnabled = YES;
[btn setTitle:@"發布活動" forState:UIControlStateNormal];
}
}
}
uj5u.com熱心網友回復:
我來看看我多少級?轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/110033.html
標籤:茶館
