Next/Previous Keyboard Toolbar iOS7

前端 未结 7 1089
情书的邮戳
情书的邮戳 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)

    0 讨论(0)
提交回复
热议问题