Questions tagged [dialogviewcontroller]

The DialogViewController is a MonoTouch.Dialog ViewController for iPhone/iPad applications.

The DialogViewController is a MonoTouch.Dialog ViewController for iPhone/iPad applications built using .Net languages. "The DialogViewController, being a UITableViewController subclass, has a UITableView as its view."

Here is a link to the author's website about the DialogViewController:

http://docs.xamarin.com/ios/tutorials/MonoTouch.Dialog#Using_DialogViewController

17 questions
10
votes
3 answers

Structuring a MonoTouch.Dialog application

From the examples at Xamarin.com you can build basic M.T. Dialog apps, but how do you build a real life application? Do you: 1) Create a single DialogViewController and tree every view/RootElement from there or, 2) Create a DialogViewController for…
3
votes
2 answers

DialogViewController Missing Back Button

I am using the NavigationItem to drive the navigation of the application. For all of my controllers inheriting from DialogViewController, the back button doesn't show, even if I do BackButtonBarItem = news UIBarButtonItem(..) The back button never…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
2
votes
1 answer

Button Click inside TableView Header is ignore in iOS

I am making TableView with the custom Header. in the custom header I have 1 ImageView, 2 UILabel and 1 UIButton. When i set TouchUpInSide event on the UIButton it will not fire. I see many post on the SO and google but nothing is getting help…
Harshad Pansuriya
  • 20,189
  • 8
  • 67
  • 95
2
votes
1 answer

Monotouch.Dialog StyledStringElement delegate always fires for the last element added

given the following code, I am having an issue when clicking on each element. If we assume I have 5 exercises and therefore create 5 elements in the foreach() loop, when the table is rendered and I click on any element, the delegate always gets the…
Apollonas
  • 647
  • 1
  • 5
  • 12
2
votes
1 answer

Monotouch: how to add UIView to DialogViewController

In one of my screens I need to add UIView (with some labels and buttons) to DialogViewController. The reason is I'm not using TableView header for this is that I don't want this view to scroll when table is scrolled. I can achieved this if I add my…
ErnestJ
  • 167
  • 12
1
vote
2 answers

Changing DialogViewController TableView height using monotouch

Is there a reason why setting TableView.Frame on DialogViewController LoadView method doesn't seem to do anything? Currently to overcome this problem I set TableView.ContentInset for top and TableView.TableFooterView for bottom margins, but the…
ErnestJ
  • 167
  • 12
1
vote
0 answers

Text color of Section Header in DialogViewController

Is it possible to change color of text for section header in DialogViewController? I have tried many tricks but without result.
baltazar
  • 11
  • 2
1
vote
1 answer

MonoTouch DialogViewController - why must it be in the first place of a UINavigationController?

I want to use a DialogViewController inside of a UITabViewController. Problem: Nested elements don't show a navigation bar, and so it is not possible to go back. When I push my class (inherited from DialogViewController) to a UINavigationController,…
1
vote
1 answer

MonoTouch.Dialog change DialogViewController style

Is this possible to apply new style to already created DialogViewController? In one of my views I need to clear root and change from grouped to plain view. Just setting style to new one doesn't do anything, so I'm not sure if I need to call some…
1
vote
1 answer

Monotouch use UITabBarController inside DialogViewController

Currently in my app I have this design: -- DialogViewController 1 -----DialogViewController 2 --------DialogViewController…
ErnestJ
  • 167
  • 12
1
vote
0 answers

DialogViewController frame resize after UIImagePickerController

i have some problem with DialogViewController. This is modified example from xamarin monotouch examples(BubbleCell) that shows the issue dowload. Shortly, i have UIImagePickerController from TweetStation, that collects image for profile photo. And…
1
vote
1 answer

Monotouch - DialogViewController's TableView Background Changes Background of Elements As Well

I have a UIViewController with 2 main subviews. One subview is UIViewController and the other is a DialogViewController. The DialogViewController contains a few elements. I have a custom background that I would like to assign behind the DVC so when…
0
votes
1 answer

UIRefreshControl not showing Xamarin with DialogViewController below iOS 10

I'm new to Xamarin iOS development and we are having a legacy code in which they have created all tableview using DialogViewController. ViewController hierarchy is as below: PQR derived from ABC and ABC is derived from DialogViewController. And now…
0
votes
1 answer

UITableView Interfering with Status Bar in Xamarin.iOS

I have created Slide Menu in Xamarin.iOS with below library https://github.com/thedillonb/MonoTouch.SlideoutNavigation SplashViewController.cs window = new UIWindow(UIScreen.MainScreen.Bounds); Menu = new SlideoutNavigationController(); var…
Harshad Pansuriya
  • 20,189
  • 8
  • 67
  • 95
0
votes
1 answer

Add Label with Image in DialogViewController in IOS

I am creating SlideNavigation Drawer in ios(Xamarin). and I have created with help of below link https://github.com/thedillonb/MonoTouch.SlideoutNavigation The code is working fine as I want. Code : class DummyControllerLeft : DialogViewController …
Harshad Pansuriya
  • 20,189
  • 8
  • 67
  • 95
1
2