Is it possible to configure an interactive linear gauge inside a grid view cell ?
Sure, thats no problem.
I've attached a C# version.
-SteveZ
That's great. Can you please also post a C# version of this.
Absolutely.
I've attached a sample to demonstrate it.
The trick is that you have to require one gesture to fail to allow the other to begin.
This can be done via the following like of code:
[self.gridView.panGestureRecognizer requireGestureRecognizerToFail:_pan];
Basically, it's saying that grid's scrolling gesture should only occur if the long press gesture we've attached to our gauge fails.
Hope this helps,