Created
June 9, 2015 23:27
-
-
Save MasazI/6b7b7aeff5135fac9116 to your computer and use it in GitHub Desktop.
NSString+SampleAddition.m
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+SampleAddition.m | |
// TrainingObjectiveC | |
// | |
// Created by masai on 2015/06/10. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#import "NSString+SampleAddition.h" | |
@implementation NSString (SampleAddition) | |
-(NSString *)addSample | |
{ | |
return [NSString stringWithFormat:@"%@sample", self]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment