Next/Previous Keyboard Toolbar iOS7

前端 未结 7 1109
情书的邮戳
情书的邮戳 2021-02-01 05:33

Currently, I am trying to set the next/previous buttons on my keyboard toolbar to the new, sleek iOS 7 back button/forward buttons that get put in navigation controllers to go b

7条回答
  •  无人共我
    2021-02-01 05:53

    Use this: https://github.com/simonbs/BSKeyboardControls

    But it uses the segmented control which got flattened in iOS 7.

    Edit: Just change the text of the segments:

      [self setSegmentedControl:[[UISegmentedControl alloc] initWithItems:@[@"<",@">") ]]];
    

    This may not be the most elegant. (Not even sure this exact code compiles, but you see the point)

提交回复
热议问题