facebook和pinterest如何实现他们的LIKE方法

时间:2012-09-02 14:49:19

标签: ios uibutton selector

假设他们没有API,他们如何实现LIKE按钮?

例如。我在视图中设置了一个按钮

UIButton *likeButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [likeButton setTitle:@"Like" forState:UIControlStateNormal];
    [likeButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    likeButton.frame=CGRectMake(10, 10, 100,30);

使用选择器检测lIKE按钮

[likeButton addTarget:self action:@selector(likeButtonPressedAction:) forControlEvents:UIControlEventTouchUpInside];

是否可以将USER传递给likeButtonPressedAction选择器,以便我知道LIKE被按下了哪个用户?即我可以检测LIKE按钮是否被按下,但我不知道如何检测LIKE属于谁。

1 个答案:

答案 0 :(得分:0)

似乎最好的方法是使用标签来识别所需的视图。