I created a custom UITableViewCell by giving a prototype cell a class name in xcode. Xamarin synchronized the storyboard file and created the class for me in xamarin studio.
To structure my project I changed the namespace and moved it to a folder structure matching the class namespace, i.e. MyProject.Track.TrackTableCell
where MyProject is the name of the project in xamarin studio, Track a folder and TrackTableCell the class. When I open my storyboard file in xcode I can't see the class name anymore. It's not available to select in the Utilities view or in the Project Navigator in xcode? As a result the xamarin synchronization tries to recreate the class again.
If I move the TrackTableCell class to the project root again it's visible in xcode.
How can I get xcode to recognize the xamarin folder structure?