I'm making RadioPlayer with model, view and controller. Model would be a shared instance and all initialization (play, pause etc.), view is just button and slider and controller should merge view and model...
Now I've got problem how to do this especially if using nibs... Here is good example with programatically written uiview (using loadView in ViewController) .- Objective-C, Need help creating an AVAudioPlayer singleton (Wolfgangs solution) but I would like to do it with nib.
So in short - Create nib for UIView, add that view to its controller (with its model). So this would be only controller for that view (slider + play/pause) not whole view (iPhone screen).
Thanks.