Hey,
So Im wanting to make an app with 3 tabs, and a DialogViewController in 2
out of the 3 tabs. I'll be doing some nice looking tables in those tabs. In
order to do what I want to do I'll have a UINavigationController in these
two tabs with the DialogViewController in them. This works great... except
for a small issue.

I want to make the root element something like this

RootElement root = new RootElement("ROOT 1")
{
  new Section("SECTION 1")
 {
    new RootElement("ROOT 2", new RadioGroup(0))
    {
      new Section("SECTION 2")
      {
        new RadioElement("RADIO 1"),
        new RadioElement("RADIO 2"),
        new RadioElement("RADIO 3"),
        new RadioElement("RADIO 4"),
        new RadioElement("RADIO 5"),
        new RadioElement("RADIO 6"),                                            
      }
    }
  }
};

So pretty much just 1 element and it'll say "ROOT 2" as its caption, and
then it'll say "RADIO 1" on it detail text. This works great, but when I
select that element and then choose another option, say "RADIO 2" when I go
back it still says "RADIO 1". I am unsure why this doesn't work... If I go
back into "ROOT 2" it will have "RADIO 2" selected.

Also if instead of adding my UITabBarController to the window and I instead
add my UINavigationController everything will work fine....

Anyone got any idea why this would be happening like this?

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/DialogViewController-in-a-UINavigationController-in-a-UITabBarController-tp3856319p3856319.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to