gpt4 book ai didi

ios - Storyboard中的 Paintcode 样式包

转载 作者:行者123 更新时间:2023-11-29 02:11:41 25 4
gpt4 key购买 nike

我用 PaintCode 创建了各种图形。当我导出时,我得到一个生成的 .m 和 .h 文件。对于我的项目,这是生成的 .h 文件:

@interface StyleKit2 : NSObject

// Colors
+ (UIColor*)black;
+ (UIColor*)mustad_blue;
+ (UIColor*)mustad_grey;
+ (UIColor*)white;
+ (UIColor*)mustad_dark_grey;
+ (UIColor*)mustad_blue_half;

// Images
+ (UIImage*)image;

// Drawing Methods
+ (void)drawHorse_shoeWithFrame: (CGRect)frame;
+ (void)drawCogsWithFrame: (CGRect)frame;
+ (void)drawHoofWithFrame: (CGRect)frame ispressed: (BOOL)ispressed;
+ (void)drawHoof_camWithFrame: (CGRect)frame ispressed: (BOOL)ispressed;
+ (void)drawOrder_folderWithFrame: (CGRect)frame;
+ (void)drawSpalshWithFrame: (CGRect)frame;
+ (void)drawHorse_shoe_2WithFrame: (CGRect)frame;
+ (void)drawMustad_square_shapeWithFrame: (CGRect)frame;
+ (void)drawGrey_hoofWithFrame: (CGRect)frame ispressed: (BOOL)ispressed;
+ (void)drawHoof_unfilledWithIspressed: (BOOL)ispressed;

// Generated Images
+ (UIImage*)imageOfSpalshWithFrame: (CGRect)frame;

@end

为了在 Storyboard 中使用它,我添加了一个对象并将自定义类设置为我的样式包。我添加了一个 ImageView,右键单击我的 stylekit 进行拖动,但是..我没有找到 Outlet Collections,难道我不能在这里使用我的绘图方法吗?

我做错了什么?

最佳答案

Outlet Collection 仅适用于没有参数的 Canvas

你有:

+ (UIImage*)imageOfSpalshWithFrame: (CGRect)frame;

制作它:

+ (UIImage*)imageOfSpalsh;

关于ios - Storyboard中的 Paintcode 样式包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29228073/

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