黑马程序员技术交流社区

标题: 分类 [打印本页]

作者: 飞奔的小鱼    时间: 2015-11-7 13:57
标题: 分类
#import <Foundation/Foundation.h>

@interface NSString (NSStringExtend)

+ (int)numberCountOfString:(NSString *)str;
- (int)numberOfCount;

@end
@implementation NSString (NSStringExtend)
+ (int)numberCountOfString:(NSString *)str
{
    return [str numberOfCount];
}

- (int)numberOfCount
{
    int count = 0;
    //1.把每一个字符拿出来比较
    for (int i = 0; i < self.length; i++)
    {
        unichar c = [self characterAtIndex:i];
        
        if (c >= '0' && c <= '9' )
        {
            count++;
        }
        
    }
    return count;
}

@end

作者: peide0427    时间: 2015-11-7 22:52
主函数呢?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2