Re: [MonoTouch] Deploy app to iPhone: Exception when Deploying

2011-06-13 Thread efontana
You will get this error if you install MonoTouch into a folder that has spaces in the name. Put it into Applications don't put it on the Desktop (that has spaces in the name). Eric -- View this message in context:

Re: [MonoTouch] Deploy app to iPhone: Exception when Deploying

2011-06-13 Thread efontana
I meant MonoDevelop not MonoTouch. -- View this message in context: http://monotouch.2284126.n4.nabble.com/Deploy-app-to-iPhone-Exception-when-Deploying-tp3590999p3594017.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch

[MonoTouch] adding a back button

2011-06-13 Thread Wally McClure
I wanted to add a back button on my view when I load it. Unfortunately, I am unable to get the back button to display. I have the code below in my ViewDidLoad() method. Any suggestions are appreciated. public override void ViewDidLoad() {

Re: [MonoTouch] adding a back button

2011-06-13 Thread James Texter III
I think you have a scope issue. Try promoting the button variable to a class level variable. *James Texter III* | Technical Guru | james.tex...@monscierge.com 300 Johnny Bench Dr. Suite 120 | Oklahoma City, OK 73104 | 888-426-5730 | www.monscierge.com http://monscierge.com

Re: [MonoTouch] adding a back button

2011-06-13 Thread Wally McClure
Thanks James. Unfortunately, that's not it. As always, all suggestions are appreciated. Wally From: james.tex...@monscierge.com Date: Mon, 13 Jun 2011 15:43:16 -0500 Subject: RE: [MonoTouch] adding a back button To: theevilprogram...@hotmail.com; monotouch@lists.ximian.com I think you have

Re: [MonoTouch] adding a back button

2011-06-13 Thread David Moles
Have you tried putting the call to base.ViewDidLoad() first? On Mon, Jun 13, 2011 at 2:05 PM, Wally McClure theevilprogram...@hotmail.com wrote: Thanks James. Unfortunately, that's not it. As always, all suggestions are appreciated. Wally -- From:

Re: [MonoTouch] adding a back button

2011-06-13 Thread Dimitris Tavlikos
Your code cannot work because your view controller is not being managed by a navigation controller. Setting toolbar items on a controller that does not have a toolbar (like if it was pushed by a navigation controller) has no effect whatsoever. If it is handled by a navigation controller, try