0

在遵循此(添加渐变标签部分)教程时,我正在尝试使用 FXlabel 。这是我的 viewDidLoad 方法中的一些代码:

self.logoLabel = [[FXLabel alloc] initWithFrame:CGRectMake(14, 11, 280, 87)];

[logoLabel setFont:[UIFont boldSystemFontOfSize:45]];

[logoLabel setTextColor:[UIColor whiteColor]];
[logoLabel setShadowColor:[UIColor blackColor]];
[logoLabel setShadowOffset:CGSizeMake(0, 2)];
[logoLabel setTextAlignment:UITextAlignmentCenter];
[logoLabel setBackgroundColor:[UIColor clearColor]];
[logoLabel setText:@"Attorney Biz"];

[logoLabel setGradientStartColor:[UIColor colorWithRed:163.0/255 green:203.0/255 blue:222.0/255 alpha:1.0]];
[logoLabel setGradientEndColor:[UIColor whiteColor]];

不幸的是,我在倒数第二行出现错误"No visible @interface for 'UILabel' declares the selector 'setGradientStartColor'",并且"No visible @interface for 'UILabel' declares the selector 'setGradientEndColor'"

有人可以解释如何消除这些错误吗?

4

2 回答 2

2

检查头文件中的 logoLabel 声明并在实现文件中导入“FXLabel.h”。

@class FXLabel;
@interface SomeClass:SomeParentClass
{
    FXLabel *logoLabel;
}

@property (nonatomic, retain) FXLabel *logoLabel;

@end
于 2012-07-25T13:23:34.950 回答
0

我通过改变解决了这个问题

@property (nonatomic, strong) IBOutlet UILabel* logoLabel;

对此

 @property (nonatomic, strong) IBOutlet FXLabel* logoLabel;

添加 FXLabel 组件后。我为这些错误挠了挠头。

于 2012-10-10T09:36:08.553 回答