如何导入相同的实用程序类而不会出现重复的符号错误?

时间:2012-06-07 15:13:23

标签: objective-c ios5 dry

我有一个名为ColourUtils.h的文件,其中包含以下代码I found this which converts hex strings to color

#import <Foundation/Foundation.h>

@interface ColourUtils : NSObject

+ (UIColor *) colorWithHexString: (NSString *) hex;

@end

@implementation ColourUtils

+ (UIColor *) colorWithHexString: (NSString *) hex  
{  
    NSString *cString = [[hex stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];  

    // String should be 6 or 8 characters  
    if ([cString length] < 6) return [UIColor grayColor];  

    // strip 0X if it appears  
    if ([cString hasPrefix:@"0X"]) cString = [cString substringFromIndex:2];  

    if ([cString length] != 6) return  [UIColor grayColor];  

    // Separate into r, g, b substrings  
    NSRange range;  
    range.location = 0;  
    range.length = 2;  
    NSString *rString = [cString substringWithRange:range];  

    range.location = 2;  
    NSString *gString = [cString substringWithRange:range];  

    range.location = 4;  
    NSString *bString = [cString substringWithRange:range];  

    // Scan values  
    unsigned int r, g, b;  
    [[NSScanner scannerWithString:rString] scanHexInt:&r];  
    [[NSScanner scannerWithString:gString] scanHexInt:&g];  
    [[NSScanner scannerWithString:bString] scanHexInt:&b];  

    return [UIColor colorWithRed:((float) r / 255.0f)  
                           green:((float) g / 255.0f)  
                            blue:((float) b / 255.0f)  
                           alpha:1.0f];  
} 

@end

我有2个ViewControllers都需要使用这个类(用于装饰viewDidLoad中的UI)。在.h个文件中,我已导入此文件:#import "ColourUtils.h"

但是,我在编译时遇到以下错误:

ld: duplicate symbol _OBJC_METACLASS_$_ColourUtils in ...

将这种常用方法包含在多个ViewControllers中的最佳方法是什么?我来自Java背景,静态方法和一些导入会很好,但在Objective-C中看起来不一样

1 个答案:

答案 0 :(得分:3)

不要将类的@implementation部分放入.h文件中。 .h应仅用于其他类所需的类接口的声明,以便了解它们可以使用的公共方法和属性。为其他人不需要了解的类的部分(实现和私有声明)创建匹配的.m文件。