-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Why a button on the customViewForEmptyDataSet can not respond click event? #168
Comments
Thank you! |
Is it just coincidence that you guy's avatars kinda bond? 😂 |
BW, will release a new pod soon including this fix ✌ |
It is absolutely a coincidence. |
Pulling the pod directly from Github by using the git option in my Podfile. It still doesn't work with the fix for #119. UIButton on my custom view doesn't respond. I do it like this by the way:
EmptyHistoryViewController is where I initialize the button and have its IBAction. The button is animating when tapped in the view but the action is not triggered. Also tried using Hope you could help me out. Great job on the pod by the way. Thanks. |
Running into the same issue as @dean-gr. |
+1 |
Does it has been solved? I am still have the same issue |
It's fixed in #347, but I don't think this is being overly maintained anymore as the last commit was 5 months ago. |
+1 |
wait, is this still not merged and released or am I doing something else wrong trying to get a button in my custom view tappable? |
In my project,i need a custom view for the customViewForEmptyDataSet. I put a button on my custom view but it can not respond a click event.My code is here:
-(UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
{
UIView *holderView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kFrameWidth, kFrameHeight)];
}
How can i let the reloadBtn respond a UIControlEventTouchUpInside event?
The text was updated successfully, but these errors were encountered: