0
我遇到類似的問題,請問這裏:UIToolbar at the bottom not working in Retina 4 simulator。 我的UIToolbar沒有響應iPhone 4上的觸摸。工具欄是可見的,並且位於屏幕的底部。只有當我將其移動時,它纔會響應觸摸。 到目前爲止還沒有解決方案爲我工作。我正在使用故事板,並且我已嘗試 在所有視圖控制器上啓用use full screen
,並將self.view.frame = [UIScreen mainScreen].bounds;
放入我所有的viewdidload
方法中。UIToolbar對觸摸沒有反應
我也試過把[window setFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)];
放在我的appdelegate中。