我正在尝试将配件视图放在默认的UIKeyboard上。我希望将配件视图的背景颜色与iOS 6和iOS 7的键盘视图的背景颜色相匹配。我正在尝试使用RGB以下,但这并没有帮助。
如果有人以前这样做过,请建议。
For iOS 6
myAccessoryView.tintColor = [UIColor colorWithRed:105.0f/255.0f green:114.0f/255.0f blue:125.0f/255.0f alpha:1.0f];
For iOS 7
myAccessoryView.tintColor = [UIColor colorWithRed:(81.0f / 255.0f) green:(81.0f / 255.0f) blue:(81.0f / 255.0f) alpha:0.98f]
答案 0 :(得分:4)
对于iOS7,您可以使用UIInputView。为了支持iOS6,你将不得不投入更多的工作,基本上是对UIToolBar进行子类化并设置正确的tintColor。有关详细信息,请参阅How to extend keyboard gradient on iPhone?