-
Notifications
You must be signed in to change notification settings - Fork 443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Customise Card Header View #637
Comments
Hello @gavirawson-apple, @erik-apple, |
Hi @majidsaleem105. You can try accessing the UI element directly and setting up tap gestures. From within your view controller, something along the lines of: taskView.headerView.titleLabel.addGestureRecognizer(someTapGesture) |
Hi @grawson, I've tried as you suggested but it didn't work. I guess this is because the HeaderView click event triggers first. I tried to remove the UserInteraction from HeaderView, but it also didn't work. I tried it in the OCKGridTaskViewSynchronizer class under the makeView function.
I also tried it from the dailyPageViewController function like
It didn't work either way. I think it may work if we could remove the UserIntraction from the HeaderView and then add the GestureRecognizer. Can you please guide me on how I can remove UserInteration from the HeaderView? Thanks, |
The tap gesture in the header is set up on a private property of the view. Getting around that and producing the setup you mention will take some crafting. But given this particular view described is more custom, have you considered creating your own view + view controller? You can piece together the smaller view components provided in CareKit ( |
Hi @grawson, Thanks for your advice. I've managed to build the functionality the way you suggested. I used Collection Content View Circles to bring up the further task details and Header View to call my custom functions. Thanks,
|
Glad to hear it! |
Hello everyone,
I want to call different custom functions by clicking on:
Please consider the attached screenshot. I want to call different custom functions when a user clicks on the "Bell Icon" (Disclosure Image) or the Task Title.
Please note, I'm using Custom Task View Controller defined by @gavirawson-apple on #401
Thanks,
The text was updated successfully, but these errors were encountered: