0
votes
1answer
117 views

Monotouch - Can't dismiss current view on button click

I have a view where I'm letting a user edit a EntryElement. I register the click event fine through the delegate of the "Done" button however, I can't get it to dismiss the current view to go to the ...
0
votes
1answer
176 views

Monotouch Crash: Replace UINavigationController A with B and Push UiViewControllers on B

We have been using Xamarin for a while and it is causing a weird crash while developing the latest iPad app. Following is the problem: The ipad App uses a story board with 2 Navigation controllers ...
2
votes
1answer
195 views

Monotouch NavigationController Transition Style

I am using Monotouch storyboard for Iphone. I have a navigation controller and through code I am setting the navigationbarhidden to false or true on certain views. I am setting the visibility in ...
1
vote
1answer
91 views

UITableView Monotouch Levels

I have an UINavigationController with an UITableView in it. The TableView has 3 Levels. How can i change an item in the first level list from the third level?
2
votes
2answers
109 views

Switch to another View, but stay in the Navigation Controller

I have a navigation controller with details about a specific product, one of the details is a small image of the product. Now I want to add a button which must go to a view controller with a enlarged ...
0
votes
0answers
123 views

Monotouch iPad Popup Screen

Hy, how can i code/design such a popup screen using monotouch? Thanks
0
votes
1answer
38 views

How to detect when the control has moved to the view in MonoTouch?

I have View1 and View2. In View1, I call the following to get to View2: View2 pl = new View2(); this.NavigationController.PushViewController(pl, true); View2 loads fine. Then in View2, I call ...
0
votes
1answer
128 views

UITableview inside a uiNavaigationcontroller inside a UITabView with XIB

Excuse the complete monotouch noob. I have a main Tab controller that is the basis for the app, when I navigate to one of the tabs I need is uinavigationcontroller with a uitableview inside it. ...
0
votes
0answers
315 views

Monotouch issue with UINavigationController

I have an issue with a UINavigationController. This is the code I'm using: using System.Drawing; using MonoTouch.Foundation; using MonoTouch.UIKit; namespace SalesOrderTest { public partial ...
2
votes
1answer
647 views

How to hide the Back Button of UINavigationController?

I've tried various ways of hiding the back button of my UINavigationController UINavigationController RVC = new UINavigationController(); other code RVC.NavigationItem.SetHidesBackButton(true,true); ...
0
votes
0answers
180 views

Use MonoTouch UITabBarController and NavigationControl

I can not resolve a problem with UiTabController ... have a first ViewControl LOGIN, this control must not have a tabcontroller when i do autentication, use navigationcontroller PushViewController ...
1
vote
1answer
562 views

MvvmCross UINavigationController customise navigationBar

Further to my experiences with MvvmCross, I've managed to build an app for iPhone which starts with a TabBarController. I can also successfully navigate within each tab to deeper levels. The problems ...
1
vote
1answer
103 views

iOS 5.1 Monotouch View Qustions

Is it possible to have the following "view" structure? 1) RootViewController is a UITabBarController. 2) One of the "Tabbed" views is a UISplitViewController. 3) The "Detail" view of the ...
1
vote
1answer
588 views

MVVMCross MonoTouch UITabBarController can't access navigation bar

I'm attempting to create a UITabBarController which implements a UINavigationBar, something I'd do in Xcode in a matter of minutes. However, I'm struggling using MVVMCross with MonoTouch. Some of the ...
1
vote
1answer
170 views

monotouch rotate and navigationViewController

I'm new in monotouch and I'm having a problem using NavigationViewController: In the FinishedLauching method, if I comment this line: window.AddSubview(viewController.NavigationController.View); The ...
2
votes
2answers
389 views

Monotouch memory view controller problems

I have a problem with the memory consumption of my app I hope you can help me with this, I have a Navigation Controller with maybe 10 controllers to navigate forward or backward, I'm using ...
0
votes
1answer
65 views

rearranging controls after navigationbar is hidden

The main view of my app is a UImageView and a NavigationController, which is hidden. I'm using Monotouch.Dialog to create a settings screen, which is working well. I have arranged the UIImageView ...
0
votes
1answer
485 views

Right button in the UI navigation controller is not getting displayed in Monotouch

I am tryin to add a custom button in the UI navigation controller toll bar i dis this as follows created a class derived from UInavigation controller 2 .Overloaded the viewdidload as follows { ...
6
votes
2answers
1k views

Structuring a MonoTouch.Dialog application

From the examples at Xamarin.com you can build basic MT Dialog apps, but how do you build a real life application? Do you: 1) Create a single DialogViewController and tree every view/RootElement ...
6
votes
1answer
731 views

DialogViewController breaks UINavigationController path

I encountered a problem when pushing a DialogViewController to my apps global UINavigationController, that it would lose the back buttons. I was able to boil it down to this simple example: var nav ...
4
votes
2answers
926 views

How to enable/add a BackButton on the NavigationController?

I have tried many ways, but haven't succeeded. In this way I can create a new UIBarButtonItem and it works, the problem is that it dosent lock like a backButton/ArrowBackButton: public ...
1
vote
0answers
149 views

MoreNavigationController is messing up

When I press more, I get this view... Why is the "Edit-bar" not at top? I mean why is MoreNavigationController not filling the entire screen? When I click edit, I get this screen... Now I can't ...
1
vote
1answer
434 views

Can't show NavigationBar on SplitView MonoTouch

I have a problem using an navigation bar on my split view. I want the navigationbar showing on the left view there my TableView is (see picture Click Here). This is my AppDelegate: public ...
0
votes
0answers
377 views

UIPopoverController shifting with UINavigationController view pushing

I am using a UINavigationController within a UIPopoverController and pushing between three views within that navigation controller. The first two views are the same width (320.0f) but the third view ...
0
votes
1answer
130 views

Default View Fails to Load when navigating from UIImageView in Montouch

I'm really stuck, I can't seem to navigate correctly to a new UIViewController from a tap gesture when tapping on a UIImageView. I'm using MonoTouch storyboards. If I create a button on my first ...
0
votes
3answers
845 views

Button Questions in MonoTouch

I'm working with MonoTouch and I have come up with three questions around buttons that I'm hoping someone can help me with. I'm trying to change the "Back" button in the title bar. How do I do this? ...
3
votes
2answers
392 views

Strange crash when using the new PageCurl effect reading a PDF with MonoTouch and iOS 5.0

I get a strange crash when using the new PageCurl effect reading a PDF with MonoTouch and iOS 5.0. I've made a simple test case project for MonoDevelop 2.8 and uploaded on GitHub here: ...
2
votes
1answer
167 views

Adding outlets dynamically in MonoTouch

Is it possible to generate buttons and outlets dynamically from e.g. data. I am used to developing web-applications where I can generate the links from the data, but I can't see how this can be done ...
3
votes
1answer
487 views

UINavigationController scrolls down on back button click

I'm working on an iPhone / iPad app with several navigation controllers. When I click a back button of a view while the device is in landscape mode, the previous view scrolls vertically into the ...
1
vote
1answer
1k views

UISearchBar, UITableViewController and UINavigationController, Got a SIGSEGV while executing native code

I have a simple test application with a NavigationController that extends UINavigationController [MonoTouch.Foundation.Register("NavigationController")] public class NavigationController : ...
0
votes
0answers
634 views

Monotouch: NavigationController popViewController not working as expected

I have a problem with the NavigationController of my app. I add a new controller to the navigation stack with: var myNewViewController = new myNewView(); this.NavigationController.PushViewController ...
0
votes
2answers
372 views

MonoTouch.Dialog: UINavigation Holding UITabBar - Missing Back Button

My MonoTouch.Dialog Reflection-generated form is in an UITabBar which is in a UINavigationControl. Works great. When the user however clicks the list generated from the following: ...
1
vote
3answers
539 views

Defining a custom UINavigationBar through subclassing removes navigation items

I'm trying to follow the standard approach to creating a custom UINavigationBar in order to change its background image, but have found an issue in the subclassing process. If I subclass ...
2
votes
3answers
1k views

How to clean up view controllers after calling PopToRootViewController?

I have a question similar to this question but it is MonoTouch specific. When I need to call NavigationController.PopToRootViewController(), I'm currently on the 8th view controller on the stack and I ...
3
votes
2answers
2k views

Custom UINavigationBar in MonoTouch

I'm currently trying to create a custom navigation-bar for my navigation-controller in iOS using MonoTouch. The application I'm developing has the need to have a single string available on-screen no ...
1
vote
2answers
619 views

What is the proper way of changing current UIViewController without a memory leak in MonoTouch?

I have a base UINavigationController class ( xib-less code ) using the singleton pattern with the fallowing code [MonoTouch.Foundation.Register("NavController")] public class NavController : ...
4
votes
2answers
580 views

UINavigationController TitleView not displayed from ViewController NavigationItem

Whenever I add a viewController to a navigationController while in landscape the title view appears on certain views but not on others. ie: I have a navigation controller, add 3 view controllers, ...
0
votes
1answer
770 views

MonoTouch SIGSEGV crash using navigationcontroller and searchdisplaycontroller

In the MonoTouch simulator I am getting random crashes with the following diagnostic: /tmp/mono-gdb-commands.FV1b8V:1: Error in sourced command file: unable to debug self Got a SIGSEGV while ...
0
votes
1answer
539 views

UITabBarController not using NavigationController

I'm using MonoTouch and my application setup looks something like this, NavController -TabBarController -NavController -View1 This works then I click on a tab and am directed to ...
2
votes
1answer
5k views

Add a custom back button to Navigation Bar using MonoTouch

Just want to confirm this, as I'm trying to learn monoTouch alone.. I have a view which I navigate to using NavigationController.PushViewToController(). On the destination view, I have a Navigation ...
6
votes
3answers
3k views

UINavigationController and UINavigationBarDelegate.ShouldPopItem() with MonoTouch

How do I pop up an UIAlertView when the back button of a UINavigationBar (controlled by a UINavigationController) was tapped? Under certain conditions, I want to ask the user an "Are you sure?" type ...
0
votes
2answers
117 views

Load UIView Dynamically from several dll files

I have a Navigation controller in my project. now I want to load views from different dll files, and add them into the Navigation Controller. I am not sure it is possible or not. If possible how could ...
1
vote
1answer
2k views

MonoTouch: UITableViewController,NavigationController is null after NavigationController.PushViewController

I'm building a window-based (all UI programatically wired up, no IB) MonoTouch app using the following strategy: Pseudo code: Note: I'm not calling base.ViewDidLoad on any of the ViewDidLoad calls, ...
1
vote
1answer
273 views

Monotouch: OpenFlowSharp, ViewDidLoad method not called

I'm using OpenFlowSharp by Miguel De Icaza. I'm creating some test applications... My SampleController extends a UIViewController and implements IOpenFlowDataSource... SampleController : ...
0
votes
2answers
1k views

Monotouch: UINavigationController, override initWithRootViewController

How is it possible to override the constructor for UINavigationController for passing in a rootViewController? I would have a method like the following in Objective-C: ...
0
votes
1answer
527 views

MonoTouch UITabBarController and UINavigationController Title

I have a UITabBarController with various views to navigate around my application. I wish to add a nice title to the top of these and figured the nicest way is with the UINavigationController. Found ...
0
votes
1answer
304 views

Custom back button removing view from navigationBar

I have a custom button on my view and I want it to do the same functionality as the system-default back button on a navigation Bar = simply remove a view from navigationController displayed by ...
2
votes
1answer
3k views

Monotouch: UINavigationController, set the RootViewController

How is it possible to map the initWithRootViewController objective-c method in Monotouch? From Miguel de Icaza Rosetta site, I've found the following translation but I don't know how to apply it: ...
1
vote
1answer
2k views

Separate title in NavigationBar and navigation buttons

Hey, I have a stack of UIViewControllers inside of a UINavigationController. Usually the title (or the NavigationItem‘s title) decides about both the title that is displayed in the NavigationBar ...
5
votes
1answer
3k views

Modal UINavigationController with UIToolbar - Toolbar remains empty

I'm trying to put a simple UIToolbar at the bottom of a modally presented UINavigationController. In this sample, it should contain two buttons "cancel" and "something". ... UINavigationController ...

1 2