```objc QMUIButton *button = QMUIButton.new; button.adjustsImageTintColorAutomatically = YES; button.tintColor = xxx; [button setImage:normalImage1 forState:UIControlStateNormal]; [button setImage:normalImage2 forState:UIControlStateNormal]; ``` 如上述示例代码,图片设置为 normalImage2 后点击按钮,高亮的 image 会变成 normalImage1。