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
0 answers

Getting Error when runng the ios app

When I set my project options link behavior as:Don't Link app running fine but it changes Link SDK Framework Onlt I am getting the error. Here is My Error: Error MT2002: Failed to resolve "System.Xml.Serialization.XmlReflectionImporter" reference…
Ramanil
  • 65
  • 8
0
votes
1 answer

Xamarin iOS monotouch dialog - labels overlapping text input

When you create a dialog similar to the one below And then navigate to a new view controller by tapping on a radiobutton group (in my example industry type), then return back your labels are endinf up overlapping the text. Tested on simulator and…
RomanG
  • 128
  • 7
0
votes
2 answers

Xamarin custom UITableViewCell overlapping text on reuse

I'm using the Monotouch.Dialog framework to build forms for user input my app. I have run into an odd problem where the screen displays overlapping text when I subclass UITableViewCell. When I say text overlapping I mean it looks as if one entire…
0
votes
0 answers

Using UISearchBar with Xamarin iOS and MVVMCross

We have a standard SearchView - SearchViewModel binding that works in our Android and Windows Store apps. There are various places in the app that call ShowViewModel to show the SearchViewModel. In this call we pass the Search Text. We are now…
Pat Long - Munkii Yebee
  • 3,592
  • 2
  • 34
  • 68
0
votes
2 answers

Pushing a DialogViewController onto a ViewController onto NavigationController stack gives 2 pages

Noob Xamarin/MonoTouch.Dialog question: I have laid out my iOS app in the storyboard designer of Xamarin Studio. I have a UINavigationController with a root view containing a UITableView with static cells, essentially creating a main menu. The cells…
Corstiaan
  • 1,114
  • 15
  • 34
0
votes
1 answer

Monotouch Dialog - Multi line RootElement

I am using MonoTouch.Dialog to create a page in my Xamarin iOS app. I am trying to create a multi-line RootElement by leveraging the GetCell method. This works fine on load, but if you click to a different tab and back the element shrinks back to…
0
votes
1 answer

multilingual ios app using xamarin

I am a newbie in xamarin.I want to create a iOS multilingual application in xamarin but not able to find in reference for the same.plz provide me with the way out. Thanks in advance
MikeJ
  • 1
  • 1
0
votes
0 answers

mvvmcross example N-23 crashing

My project is crashing very consistently on the device with (ios 8.1) when I do the following: have MvxDialogViewController with 2 elements InputElement and any element that requires selection on the next screen (as an example DateElement) Root…
h82w8
  • 5
  • 6
0
votes
1 answer

How to implement homekit package in iphone using Xamarin

How to implement homekit package in iphone using Xamarin? I downloaded the packages from xcode 6.1, but I need to deploy to the Xamarin environment. It is possible to implement in the environment Xamarin?
0
votes
1 answer

Change Layout / Frames in MvvmCross Dialog Elements

I am trying to lightly customise by inheritance some Elements in Mvvmcross Dialog implementation. Colors and fonts are getting set fine, but if I try to set the Text Labels frame (to 100 X ... in this example) I cannot get it to stick. Can anyone…
WickedW
  • 2,331
  • 4
  • 24
  • 54
0
votes
1 answer

how to avoid uitableview cell refresh flicker when reload cell

I used the monotouch.dialog to develop one PrivateMsg talk screen. But when I reload the cell , the cell flicker, how to avoid it ? add new pm msg accross 2 step: 1. append a element cell: State.Insert(msg is sending)=> 2. reload the element cell…
BlueSky
  • 747
  • 6
  • 19
0
votes
1 answer

Where to set BackgroundColor of Monotouch.Dialog Element?

I am extending the StyledMultilineElement class to make a combination of RadioElement and StyledMultilineElement. The selection and combination of the two are working fine, however I my GetCell override seems to not properly set the background color…
spocot
  • 101
  • 4
0
votes
1 answer

How to capture DialogViewController refresh in Xamarin.iOS?

I am using Xamarin to build a simple app. In my app I use a series of classes that inherit from DialogViewController. In some cases, when the user clicks on an item, I use: NavigationController.PushViewController( new DialogViewClass() , true…
0
votes
1 answer

Monotouch dialog with MvvmCross cell reuse mixes up cell data when scrolling

I am building an app with quite a number sub classed monotouch dialog RootElements . Part of customising the look and feel of the cell was adding a notification view on the far right of the cell based on boolean value bound from the viewmodel, as…
rohanjansen
  • 51
  • 1
  • 3
0
votes
1 answer

Custom EntryElement alignment changes on redraw / refresh

I've created a custom EntryElement for our MonoTouch.Dialog so that all the controls are aligned to the right. The code is as follows: public class RightAlignEntryElement : EntryElement { private NSString _cellKey = new…
JamesSugrue
  • 14,891
  • 10
  • 61
  • 93