Objectice-C method, message, and Selector

Source: Internet
Author: User

Add a class method to the first Car method:

+ (NSString *) motto
{
return(@"Ford Prefects are Mostly Harmless");
}

 

# Import <UIKit/UIKit. h>
# Import "Car. h"

// Define the color and button style
# Define COOKBOOK_PURPLE_COLOR [UIColor colorWithRed: 0.20392f green: 0.19607f blue: 0.61176f alpha: 1.0f]
# Define BARBUTTON (TITLE, SELECTOR) [[[UIBarButtonItem alloc] initWithTitle: TITLE style: UIBarButtonItemStylePlain target: self action: SELECTOR] autorelease]

// Define the TestBedViewController
@ Interface TestBedViewController: UIViewController
@ End

// Implement the Controller
@ Implementation TestBedViewController
// Define a function
-(Void) action: (id) sender
{
// Calling a class method
NSLog (@ "% @", [Car motto]); // call a class function
}

-(Void) viewDidLoad
{
Self. navigationController. navigationBar. tintColor = COOKBOOK_PURPLE_COLOR;
Self. navigationItem. rightBarButtonItem = BARBUTTON (@ "Action", @ selector (action :)); // set the title and event of the button in the right navigation bar
// Here @ selector indicates the selector
}
@ End

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.