gpt4 book ai didi

cocoa - 如何以编程方式编辑界面生成器对象?

转载 作者:行者123 更新时间:2023-12-03 16:53:31 25 4
gpt4 key购买 nike

我使用 Interface Builder 创建了一个标签,现在我想使用代码而不是 IB 的颜色选择器来设置标签的背景颜色。 (我想这样做,以便我可以使用 RGB 定义颜色并最终更改标签的颜色空间。)

我在 cocoa 里。如何使用代码编辑 IB 对象的属性?

我的代码如下所示:

//.h file

#import <UIKit/UIKit.h>

@interface IBAppDelegate : NSObject {

UILabel *label;
}

@property (nonatomic, retain) IBOutlet UILabel *label;

@end



//.m file


#import "IBAppDelegate.h"

@implementation IBAppDelegate

@synthesize label;

(memory stuff...)

@end

最佳答案

- (void)applicationDidBecomeActive:(UIApplication*)application
{
self.label.backgroundColor = [UIColor colorWithRed:0.1f
green:0.2f
blue:0.3f
alpha:1.0f];
}

关于cocoa - 如何以编程方式编辑界面生成器对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1049674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com