为什么在iOS7模拟器中可以正常运行,在iOS8模拟器中无效。。。


Xcode6.2,OSX 10.10.3beta,为什么在iOS7.1模拟器中可以正常运行,在iOS8版本以上模拟器中无效。。。


 - (void)titleButtonClick:(XXTitleButton *)titleButton {
    UIImage *down = [UIImage imageWithName:@"navigationbar_arrow_down"];
    UIImage *up = [UIImage imageWithName:@"navigationbar_arrow_up"];
    if (titleButton.currentImage == down) {
        [titleButton setImage:up forState:UIControlStateNormal];
        [self.view addSubview:self.titleMenu];
    }else {
        [titleButton setImage:down forState:UIControlStateNormal];
        [self.titleMenu removeFromSuperview];
    }

}

ios8 ios ios7

j.a.y 10 years, 1 month ago

你应该检查下 XXTitleButton 中是否存在不兼容的情况

推倒天江衣 answered 10 years, 1 month ago


 if (titleButton.currentImage == down)

不能用这样的判断,建议为button的两种状态设置图片,比如:normal->up, selected->down,然后使用titleButton.selected来判断当前button的状态

stykdl answered 10 years, 1 month ago

Your Answer