分割字符串:[NSString compontentsSparatedByString:@""]
类扩展:@interface 类名()
{属性}
- 方法
@end
类扩展中的属性方法接口在类中实现后只能在该类中调用
array排序只能排相同类型的对象:
如果是自定义对象可以在该对象中写排序方法 然后放在[array sortedArrayUsingSelector:@selector(比较函数)] ;需要先引入有该比较函数的类型的头文件
分割字符串:[NSString compontentsSparatedByString:@""]
类扩展:@interface 类名()
{属性}
- 方法
@end
类扩展中的属性方法接口在类中实现后只能在该类中调用
array排序只能排相同类型的对象:
如果是自定义对象可以在该对象中写排序方法 然后放在[array sortedArrayUsingSelector:@selector(比较函数)] ;需要先引入有该比较函数的类型的头文件