IB Designables使用单元测试时出错

时间:2014-11-26 08:44:47

标签: objective-c xcode interface-builder ibdesignable

我目前正在使用Xcode 6.1.1和Objective-C开发iOS应用程序。在应用程序中有几个自定义视图子类。其中一个是UIButton的子类,另一个是UIView的子类。

这些自定义视图标记为 IB_DESIGNABLE ,并且具有 IBInspectable 的多个属性。
我还在Xcode项目中使用单元测试。每次打开故事板时,Xcodes都会给我带来一些错误。

IB Designables
Failed to update auto layout status: dlopen(UnitTests.xctest, 1): Library not loaded: @rpath/XCTest.framework/XCTest 
Referenced from UnitTests.xctest
Reason: image not found

IB Designables 
Failed to render instance of CustomRadioButton: dlopen(UnitTests.xctest, 1): Library not loades: @rpath/XCTest.framework/XCTest 
Referenced from UnitTests.xctest
Reason: image not found

当我删除I​​B_DESIGNABLE语句时,错误消失了。不幸的是,我需要它们是IB_DESIGNABLE。 我在StackOverflow上发现了一个有相同问题但是使用Swift的帖子。建议的解决方案不能使用Objective-C,因此在Objective-C中不存在用于解决问题的功能(据我所知)。

以下是问题的链接:IBDesignable Errors When Adding to Tests Target

有人知道如何解决这个问题吗? 我也尝试过使用Xcode 6.2 beta,但问题仍然存在。

正如一条评论所要求的,这是我的一个自定义视图的代码:

CustomButton.h     #import

@interface CustomButton : UIButton

@property (nonatomic, strong) UIFont *titleFont UI_APPEARANCE_SELECTOR;
@property (nonatomic, assign) IBInspectable BOOL useShapedForm;

@property (nonatomic, strong) IBInspectable UIColor *defaultColor;
@property (nonatomic, strong) IBInspectable UIColor *selectedColor;
@property (nonatomic, strong) IBInspectable UIColor *disabledColor;

@property (nonatomic, assign) IBInspectable CGFloat cornerRadius;

- (void)setDefaults;

- (IBAction)touchDown:(id)sender;
- (IBAction)handleButtonClick:(id)sender;

@end

CustomButton.m

#import "CustomButton.h"

@implementation CustomButton

#pragma mark - Initialisation

- (instancetype)init
{
    if (self = [super init]) {
        [self setDefaults];
    }
    return self;
}


- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        [self setDefaults];
    }
    return self;
}


- (id)initWithCoder:(NSCoder *)aDecoder
{
    if (self = [super initWithCoder:aDecoder]) {
        [self setDefaults];
    }
    return self;
}


- (void)setDefaults
{
    self.useShapedForm = NO;

    self.cornerRadius = self.useShapedForm ? 5 : 0;

    self.defaultColor = self.useShapedForm ? [UIColor rsm_bg_btn_2] : [UIColor clearColor];
    self.selectedColor = self.useShapedForm ? [UIColor rsm_bg_btn_1] : [UIColor clearColor];
    self.disabledColor = self.useShapedForm ? [UIColor rsm_bg_btn_3] : [UIColor clearColor];

    if (!self.useShapedForm) {
        [self setTitleColor:[UIColor rsm_font_333_dark] forState:UIControlStateNormal];
        [self setTitleColor:[UIColor rsm_bg_red] forState:UIControlStateSelected];
        [self setTitleColor:[UIColor rsm_font_333_light] forState:UIControlStateDisabled];
    } else{
        [self setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    }
}


#pragma mark - Properties

- (void)setTitleFont:(UIFont *)titleFont
{
    if (self.titleFont != titleFont) {
        self.titleFont = titleFont;
        [self.titleLabel setFont:self.titleFont];
    }
}

- (void)setTitleEdgeInsets:(UIEdgeInsets)titleEdgeInsets
{
    UIEdgeInsets insets = UIEdgeInsetsMake(titleEdgeInsets.top - 10,
                                           titleEdgeInsets.left,
                                           titleEdgeInsets.bottom,
                                           titleEdgeInsets.right);
    [super setTitleEdgeInsets:insets];
}

- (CGSize)intrinsicContentSize
{
    CGSize defaultMetric = [super intrinsicContentSize];
    // TODO: Metrics anpassen!!
    return CGSizeMake(defaultMetric.width, 39);
}


#pragma mark - Private Methods

- (void)drawRect:(CGRect)rect
{
    [super drawRect:rect];

    if (self.useShapedForm) {
        [self drawRSMShape];
    }
}


#pragma mark - Public Methods

- (void)drawRSMShape
{
    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds
                                               byRoundingCorners:UIRectCornerTopRight | UIRectCornerBottomRight | UIRectCornerBottomLeft
                                                     cornerRadii:CGSizeMake(self.cornerRadius, self.cornerRadius)];
    [path closePath];

    if (self.selected) {
        [self.selectedColor setFill];
    }
    else if (self.enabled){
        [self.defaultColor setFill];
    }
    else {
        [self.disabledColor setFill];
    }

    [path fill];
}


- (IBAction)touchDown:(id)sender
{
    RSMButton *button = (RSMButton *)sender;
    button.highlighted = NO;
}


- (IBAction)handleButtonClick:(id)sender
{

}

@end

1 个答案:

答案 0 :(得分:3)

我也有这个问题。它是由IB Designable文件引起的,该文件在项目和测试项目中都具有目标成员资格。一旦我从测试项目中删除它,清理并重新启动Xcode,错误就消失了