0

我是制作 ios 应用程序的新手。

我现在在使用标签和数据时遇到了一些问题。我想在我的主屏幕上放置一个标签(文本),当人们按下它时,一些数据(文本、图片或其他内容)将出现在该标签下。而当人们再次推送时,数据就会消失。

我在谷歌上搜索过,但很抱歉我没有得到它。

如果你们没有时间为我解释清楚,只要给我涵盖这些问题的书籍(哪一页或哪一章)我会在上面找到。

非常感谢你,祝你有美好的一天。

4

2 回答 2

0

不要为此使用标签,使用 UIButton 并将形状更改为自定义。然后它看起来像一个没有按钮形状的标签。在按钮按下事件中做任何你想做的事情

于 2013-02-20T03:57:25.267 回答
0

设置UITapGestureUILable& 处理点击事件。

UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)];
tapGestureRecognizer.numberOfTapsRequired = 1;
[myLabel addGestureRecognizer:tapGestureRecognizer];
myLabel.userInteractionEnabled = YES;
[tapGestureRecognizer release];

-(void)handleTapGesture:(UIGestureRecognizer*)recognizer
{
    //do whatever you want.
}

如果您只想设置文本,则使用UILableelse 使用 custom UIButton

于 2013-02-20T04:30:18.553 回答