Let Navigationitem.leftbarbuttonitem have a backbarbuttonitem look style

Source: Internet
Author: User

The demand is: Click the Back button, automatically save the settings, and then return to the previous screen, the return button must use the kind with the left arrow, used to understand the iOS.
I started with iOS default Backbarbuttonitem, but found that it couldn't receive events, even though I set the target and the action didn't work at all. With Leftbarbuttonitem, it is possible to receive events, but the style cannot be the arrow that returns the button.

Distress, the last several attempts, the web also turned n times finally found a way:
No additional images are required, the code is as follows:

OBJC Code
    1. UIButton *backbutton = [UIButton buttonwithtype:101];
    2. [Backbutton addtarget:self Action: @selector (back) forcontrolevents:uicontroleventtouchupinside];
    3. [Backbutton Settitle:canceltext Forstate:uicontrolstatenormal];
    4. Uibarbuttonitem *backitem = [[[Uibarbuttonitem alloc] Initwithcustomview:backbutton] autorelease];
    5. Self.navigationItem.leftBarButtonItem = Backitem;

Let Navigationitem.leftbarbuttonitem have a backbarbuttonitem look style

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.