請問有辦法用#define 去定義一個演算法
#define getName(name) XXXXXXXXXXXXX
getName(name)等於下頭的東西
-(NSString*)getName:(NSString*)name{
if([[UIDevice currentDevice] userInterfaceIdiom]
== UIUserInterfaceIdiomPad){
return [NSString stringWithFormat:@"111%@", name];
}
else{
return [NSString stringWithFormat:@"222%@", name];
}
}
記得有看過類似的東西
可是不知道朝什麼方向
感謝