gpt4 book ai didi

ios - 不调用CKRadialMenu的委托(delegate)方法

转载 作者:行者123 更新时间:2023-11-29 00:36:44 24 4
gpt4 key购买 nike

我使用 CKRadialMenu 库。有一个方法

- (void) addPopoutView: (UIView *) popoutView withIndentifier: (NSString *) identifier

我像这样传递 ImageView ..

UIImageView *imgForFood2 = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"food-icon-img 40.png"]];
[_radialView addPopoutView:imgForFood2 withIndentifier:@"ONE"];

在输出中将添加图像,但是当我尝试单击此 popOutView 时,它的委托(delegate)方法不会触发。这是委托(delegate)方法

-(void)radialMenu:(CKRadialMenu *)radialMenu didSelectPopoutWithIndentifier:(NSString *)identifier;

请帮帮我。

最佳答案

您只需要在 Imageview 上启用用户交互。

UIImageView *imgForFood2 = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"food-icon-img 40.png"]];

[imgForFood2 setUserInteractionEnabled:TRUE];
[radialView addPopoutView:imgForFood2 withIndentifier:@"ONE"];

关于ios - 不调用CKRadialMenu的委托(delegate)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40415332/

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