Questions tagged [monotouch.dialog]

MonoTouch.Dialog is a MonoTouch framework for iOS for iOS developers to create dialog boxes and show table-based information without having to write dozens of delegates and controllers for the user interface.

MonoTouch.Dialog is a MonoTouch framework for iOS developers to create dialog boxes and show table-based information without having to write dozens of delegates and controllers for the user interface.

456 questions
0
votes
1 answer

How to add a Monotouch.Dialog.Element to UIView.AddSubview

In simple terms, I want to add an Monotouch.Dialog.Element to an UIView using UIView.AddSubview. What do I need to change/create to make this possible?
kos
  • 269
  • 3
  • 12
0
votes
1 answer

Unrecognized selector sent to instance in UITableViewCell AccessoryView

I'm trying to add a plus button to my UITableViewCell. I subclass a StringElement and add an UIImageView as my Cell AccessoryView. To make it touchable, I add a UITapGestureRecognizer but everytime I try this, I get the same exception. My…
SYNT4X
  • 210
  • 2
  • 15
0
votes
3 answers

What causes the "brown-background" issue when using MonoTouch and MonoTouch.Dialog?

We use MonoTouch for our application and we sometime experience (after some usage) that the view controller background suddenly turns brown. This happens when we pop another view controller from the navigation controller. We're using…
0
votes
1 answer

Monotouch.Dialog: Background for RadoElement block

(from MT examples) I have a simple dialog which shows a list of desserts. When the desserts is taped the list appears. However, the style of the list of deserts is not the same as the main view where I have a background view set for the…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
1 answer

Monotouch.Dialog: Adding Sections without "flying in" annimation

After a Root Element is made and displayed, I sometimes need to add a new section: this.Root.Add(MyNewPopulatedsection); The problem is that the new Section 'flys in' from the right in an animation. How do I add a section, but not have it animate?
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
1 answer

Monotouch dialog element like Wifi settings

I am wondering if Monotouch.Dialog has an Element like the one in iOS's settings for WiFi connections. You can click it to select it (shows checkmark) and you click on the right arrow to edit the entry. I am sure I can build it by hand, but want…
vbisbest
  • 241
  • 1
  • 14
0
votes
1 answer

Monotouch.Dialog - How to push a view from an Element

It seems like this should be very easy, but I'm missing something. I have a custom Element: public class PostSummaryElement:StyledMultilineElement,IElementSizing When the element's accessory is clicked on, I want to push a view onto the stack.…
0
votes
1 answer

iOS (Monotouch) App Crashes on viewWillAppear

I have an App that loads a DialogViewController. This contains several elements. One of the elements is a RootElement. This RootElement contains an EntryElement. In viewDidAppear, I am coming back from the EntryElement, and there is a value in the…
0
votes
1 answer

Monotouch: Using DialogController Root element coupled with TableView on device being rotated

I need to display different info depending on conditions. I sometimes need Root element with sections and in other cases I need table view populated with data. When I initialize Root element even empty one and then create a tableview when device is…
drunkcamel
  • 915
  • 3
  • 12
  • 25
0
votes
1 answer

DialogViewController not firing ViewDidDisappear

I have a hierarchy like the following: NavigationController Push first ViewController - ViewDidDisappear fires correctly when going to next view Push DialogViewController that has a list - ViewDidDisappear fires when going to next Each list opens…
lucuma
  • 18,247
  • 4
  • 66
  • 91
0
votes
1 answer

MonoTouch Message Element opes page with string elements

I have the following code: Section _section = new Section ("Test"); foreach (ExampleData data in Example.data) { MessageElement Item = new MessageElement (){ Sender = data.Name, Subject = data.Value, Body = data.Description, …
servarevitas3
  • 483
  • 1
  • 6
  • 23
0
votes
1 answer

Monotouch: Is it possible to present DialogViewController inside of a usual UIViewController

I need to create login screen for iPad and I need my login inputs to be fixed width. Is it possible to fix length of DialogViewController elements or create a layout with UIView element and nest DialogViewController in there?
drunkcamel
  • 915
  • 3
  • 12
  • 25
0
votes
1 answer

MonoTouch.Dialog: embed view of another UIViewController into a ViewElement?

I have a view controller that manages a four digit PIN pad. This controller is used to access my app. However, I would like to use the same PIN pad when changing the PIN. The controller to change the PIN is a MT.DialogViewController with one section…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
0
votes
1 answer

logout not working properly in monotouch-bindings facebook sample

i just downloaded the monotouch-bindings sample for facebook integration it's working fine but clicking on logout button for another user login, it's not asking the credentials, it tooks previous credentials and directly goes to next screen.
Dorababu Dodda
  • 452
  • 3
  • 23
0
votes
2 answers

HidesBottomBarWhenPushed leaves indicator

I have a settings dialog that I want to be full screen and cover the tab bar at the bottom of the screen. I used this SO answer and added HidesBottomBarWhenPushed to my view controller and it does hide the tab bar. Unfortunately it leaves behind the…
David Clarke
  • 12,888
  • 9
  • 86
  • 116