Technology Programming

How to Override an Accessor Method in Objective-C

    • 1). Open the "implementation" file for your Object-C program. This is the file that creates the code for all the methods in your program, including the accessor methods.

    • 2). Type the following line of code, substituting the "(int)" and "variable" for the actual data type and variable name you are affecting by your custom accessor method:

      -(int)variable{

      For example, if you have a "float" variable called "fraction," you would type this line:

      -(float)fraction{

    • 3). Type your custom accessor algorithm, followed by an ending brace to signify completion of your accessor method. The normal accessor method contains a single line of code that merely returns the value of the variable:

      return variable;

      Thus the original accessor method appears as:

      -(int)variable{

      return variable;

      }

      Now, suppose you want to take the value of an instance variable and multiply it by 100. For example, your instance variable might be a "float" number (which contains decimal places) called "percent." Whenever you interact with that variable, you want the percent treated as an integer. Thus, 0.67 is to become 67. Your entire custom accessor method might look like this:

      -(float)oldpercent{

      int newpercent = (int) oldpercent *100;

      return newpercent;

      }

SHARE
RELATED POSTS on "Technology"
WordPress - How to Set up a New Theme to WordPress 3.
WordPress - How to Set up a New Theme to WordPress 3.
Solution of Creative Web Design
Solution of Creative Web Design
The three disciplines of User Experience
The three disciplines of User Experience
Web Design Sheffield Options For Professional Enterprises
Web Design Sheffield Options For Professional Enterprises
Do you have what it takes?
Do you have what it takes?
Segway Cost
Segway Cost
Microsoft Access 2010: What's Coming with Office 2010?
Microsoft Access 2010: What's Coming with Office 2010?
Companies of Web Development in Ireland Provide Designs that Work
Companies of Web Development in Ireland Provide Designs that Work
Penguin Update to Put Red-Flags on Negative SEO
Penguin Update to Put Red-Flags on Negative SEO
Innovative web 2 design templates can make your business famous quickly
Innovative web 2 design templates can make your business famous quickly
Building A Search Engine Friendly Website
Building A Search Engine Friendly Website
Exceptional Advice To Build Up Your Internet Marketing
Exceptional Advice To Build Up Your Internet Marketing
The Benefits of Selecting The Right Hosting Company
The Benefits of Selecting The Right Hosting Company
Is There a Methodology for Making Successful Logos
Is There a Methodology for Making Successful Logos
Benefits of Ruby On Rails Development
Benefits of Ruby On Rails Development
The Power of Colour and Shapes in Your Infant's Life.
The Power of Colour and Shapes in Your Infant's Life.
Advantages of Hiring PSD To HTML Service Providers
Advantages of Hiring PSD To HTML Service Providers
How to Make Responsive Web Design Attractive?
How to Make Responsive Web Design Attractive?
Converting PSD to Responsive HTML
Converting PSD to Responsive HTML
Just a few realy really hints and tips when it comes to website design but look for.
Just a few realy really hints and tips when it comes to website design but look for.

Leave Your Reply

*