Next/Previous Keyboard Toolbar iOS7

前端 未结 7 1087
情书的邮戳
情书的邮戳 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:52

    If you don't mind living on the edge you could use Apple's undocumented system items to achieve the iOS 7 look. Here are left and right bar button items.

        [self setDoneButton:[[UIBarButtonItem alloc] initWithBarButtonSystemItem:105 target:nil action:nil]];
        [self setDoneButton:[[UIBarButtonItem alloc] initWithBarButtonSystemItem:106 target:nil action:nil]];
    

    Source: http://iphonedevwiki.net/index.php/UIBarButtonItem

提交回复
热议问题