IT_Learner123的ChinaUnix博客
IT_Learner123
全部博文(466)
2015年(466)
yongwang
kensnipe
u_190a3a
格伯纳
BigArcha
Bsolar
轩辕炼魂
azenk
baopbird
分类: C/C++
2015-03-16 14:26:14
原文地址:类别(Category) 作者:linux_wuliqiang
声明部分:
#import <Cocoa/Cocoa.h> @interface NSString (Utilities) - (BOOL) isURL; @end
事。
#import "NSString-Utilities.h" @implementation NSString (Utilities) - (BOOL) isURL { if ( [self hasPrefix:@"http://"] ) return YES; else return NO; } @end
is a URL”: NSString* string1 = @""; NSString* string2 = @"Pixar"; if ( [string1 isURL] ) NSLog (@"string1 is a URL"); if ( [string2 isURL] ) NSLog (@"string2 is a URL");
上一篇:chipmunk 物理引擎的基本概念和基本用法
下一篇:在Nil上调用方法
登录 注册