Last active
December 2, 2017 19:26
-
-
Save bouchtaoui-dev/3abc1086e75aca6d43f42c5d5214be3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // NSString+MyAddition.h | |
| @interface NSString(MyAdditions) | |
| - (NSString *) getCopyRightString; | |
| @end | |
| @implementation NSString(MyAdditions) | |
| - (NSString *) getCopyRightString{ | |
| return @"Copyright AppPlanet.com 2018"; | |
| } | |
| @end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment