I honestly have no idea how to reformulate my question. As I have many thoughts. I've been using katidev.com/blog 's custom XSViewController class, and I started with the laid out example. My application consists of a splitView. On the left pane, 4 different buttons. The 4 buttons control the content of the rightView of my splitView. Each button toggles a different view controller for the right side. So 1 LController, 4 buttons. Each Button takes me to 1 out of 4 RController(s).Some of the right controllers, swap multiple views. Up until now things work out just fine, LController works fine. For RController2 (right side controller #2), I've implemented a swipe gesture. RController2 manages views A and B. Now the thing is, because of a responder glitch (all views sharing the same window), even if RController2 isn't enabled, Rcontroller2 still reads the swipe gestures and swithces between A & B (which are not available on screen) on gestures. I know one possible solution, would be to store the gesture code at splitViewController, and then from there detect which view is loaded, and work my way from there. But it all seems unprofessional. I know Objective-C pretty well, the Cocoa API is what is hard to get by. Now my questions are:

1: how can I work out the responder thing, I've tried many suggested things on stackoverflow, but I can't seem to figure it out.

2: should I be using Kati's example code, or not? I want to submit it on the appstore, and some things just seem wrong from a design-perspective.

3: (Now trying code without kati), should I be subclassing NSView's and have those subclasses contain instances to NSViewController's for first responder management or have NSViewControllers have view instances. What I've done from scratch, is have controllers have outlets to views, and instead of adding controllers to arrays like kati, just adding those views.

NB: I do know I sound very naive and troll. But I'm a bit lost on how to go on from here. Not to mention this is only part of the program, I still have to work out the MVC: Model: stored database (sqlite db), V, C, and work my head around the controller. Any reply will be deeply appreciated.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.