Re: [MonoTouch] Understanding the Delegates

2012-02-16 Thread Tomasz Cielecki
Hi, I did something similar just by directly pressing the annotation by overriding the DidSelectAnnotationView and loading the view in there. This approach does not show the callout though. You could probably implement CalloutAccessoryControlTapped to get the event of tapping on the button you

Re: [MonoTouch] Is it possible to go back automatically into the application after calling a Number?

2012-02-16 Thread nader
this.btnCall.TouchUpInside+= delegate { UIWebView web = new UIWebView(); NSUrl url = new NSUrl(tel:077); web.LoadRequest(new NSUrlRequest(url)); }; Works fine, but WebView ask in a (Alert) if you really want to dial the number or not.. You Can call

[MonoTouch] display image one by one in from specific folder.

2012-02-16 Thread Pritish
Hi, I want to read the list of all images (for eg. if we take 10 images) one by one from the specific folder in my iPhone device. after click on Next() or Previous() button images get display one by one. -- View this message in context:

[MonoTouch] Monotouch Xcode Interface Builder problem

2012-02-16 Thread bustergonad
Hi, Please can someone help me or guide me on the right path to fixing my issue when using the Interface Builder to add events/actions - as no matter what I try I keep getting the error: Could not insert new outlet connection: could not find any information for the class named

Re: [MonoTouch] Soap headers getting stripped away

2012-02-16 Thread andersa
Here are my test results: Simulator - Don't link = Works Simulator - Link SDK = Works Simulator - Link all = Fails Device - Don't link = Works Device - Link SDK = Works Device - Link all = Fails I'm not sure on how to move further with this now? Is this a linker issue, and should I file a

Re: [MonoTouch] Soap headers getting stripped away

2012-02-16 Thread Sebastien Pouliot
Hello Anders, On Thu, Feb 16, 2012 at 7:34 AM, andersa anders.ag...@larmia.se wrote: Here are my test results: Simulator - Don't link = Works Simulator - Link SDK = Works Simulator - Link all = Fails Device - Don't link = Works Device - Link SDK = Works Device - Link all = Fails I'm

Re: [MonoTouch] Soap headers getting stripped away

2012-02-16 Thread andersa
Hi! My web reference classes are already decorated with the [Preserve] attribute, and that is a big part of my confusion. I've instructed the linker to preserve my classes but still they get removed. I'll put together a test case an file an issue on this. And I'm going to dig in to the linker

[MonoTouch] system.drawing namespace

2012-02-16 Thread rex
Does monotouch fully support system.drawing namespace? -- View this message in context: http://monotouch.2284126.n4.nabble.com/system-drawing-namespace-tp4393877p4393877.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch

Re: [MonoTouch] system.drawing namespace

2012-02-16 Thread Jason Awbrey
no. I believe it just includes a small subset to help with mapping to iOS drawing libraries http://iosapi.xamarin.com/?link=N%3aSystem.Drawing On Thu, Feb 16, 2012 at 7:14 AM, rex rex.ye...@gmail.com wrote: Does monotouch fully support system.drawing namespace? -- View this message in

Re: [MonoTouch] system.drawing namespace

2012-02-16 Thread Jeff Stedfast
Hi Rex, Jason, For now, I believe only a few things like RectangleF, SizeF, etc are in the System.Drawing namespace in MonoTouch. Hope that helps, Jeff On Thu, Feb 16, 2012 at 10:27 AM, Jason Awbrey ja...@awbrey.net wrote: no. I believe it just includes a small subset to help with mapping

[MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread MilkyJoe
I've just installed the new XCode 4.3, after first removing XCode 4.2. I'm no longer able to build my MonoTouch app - MonoDevelop complains the The iPhone SDK is not installed, but XCode seems to think it is. Also, attempting to open my xib files no longer launches XCode. Now I'm simply

Re: [MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread Roy Goode
My understanding is this… I might be wrong because I'm still downloading it. Xcode 4.3 is now a self-contained app, like other apps on the Mac App Store. I don't think MonoDevelop/MonoTouch has been updated yet to use the new Xcode tools that get installed in the Applications folder rather than

Re: [MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread Mikkel Kruse Johnsen
Try to look for /Developer-. When uninstalling XCode it moves it to another name. MonoTouch should be in that folder, just move it to /Developer and your back in business. -- Med Venlig Hilsen / Kind Regards Mikkel Kruse Johnsen IT Ansvarlig, Medejer Structura IT ApS Kratbjerg 212 3480

[MonoTouch] iOS Development using MonoTouch Cookbook

2012-02-16 Thread Jason Awbrey
Packt Publishing is looking for reviewers for Dimitis' new book, iOS Development using MonoTouch Cookbook http://www.packtpub.com/ios-development-using-monotouch-cookbook/book If you're interested in reviewing, contact Vishal Tiwari ( vish...@packtpub.com) - he has a limited number of e-copies

Re: [MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread Alan
There are several minor issues with Xcode 4.3 support which we are currently dealing with. I'd recommend you do not update just yet. You should wait until we release a new version of MonoTouch and MonoDevelop which complete the support for Xcode 4.3. Unfortunately the preview releases of Xcode 4.3

[MonoTouch] My app was rejected - now what?

2012-02-16 Thread MojoDK
Hi guys, I'm a little confused here. Apple rejected my app with following reason: /We found that your app crashed on iPhone 4 running iOS 5.0.1, which is not in compliance with the App Store Review Guidelines. Your app crashed on an unsecured Wi-Fi network when we: 1. Launch the app. 2. A crash

Re: [MonoTouch] My app was rejected - now what?

2012-02-16 Thread Jason Awbrey
does your app do any network communication on startup? If not, the wifi part is probably not helpful, that was just Apple telling you under what conditions they were testing On Thu, Feb 16, 2012 at 3:15 PM, MojoDK m...@fpr.dk wrote: Hi guys, I'm a little confused here. Apple rejected my app

Re: [MonoTouch] Monotouch Xcode Interface Builder problem

2012-02-16 Thread Jeff Stedfast
Presumably the difference would be in the .xib files. Never seen this before tho... Jeff On Thu, Feb 16, 2012 at 1:48 PM, bustergonad gonad2...@hotmail.co.ukwrote: Bit of an update on this. I've managed to recreate the problem outside of MonoTouch ie. Just in Xcode, so it doesn't look like

Re: [MonoTouch] My app was rejected - now what?

2012-02-16 Thread Gerry High
Mojo--make sure you test the app in airplane mode as well. you might also look at the Reachability samples to make sure your app is well behaved when the network is not available. Gerry On Feb 16, 2012, at 3:19 PM, Jason Awbrey wrote: does your app do any network communication on startup?

Re: [MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread Alex Soto
Installed MonoDevelop 2.8.6.5 Runtime: Mono 2.10.9 (tarball Tue Feb 14 20:23:29 EST 2012) GTK 2.24.9 GTK# (2.12.0.0) Apple Developer Tools: Xcode 4.3 (1175) Build 4E109 Monotouch: 5.2.5 So far its working great as expected nice job Xamarin guys =D Alex

Re: [MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread Jason Awbrey
are you manually downloading XCode? Neither software update nor the app store (where I last installed it from) were showing me the update. On Thu, Feb 16, 2012 at 11:37 PM, Alex Soto dxdr...@gmail.com wrote: Installed MonoDevelop 2.8.6.5 Runtime: Mono 2.10.9 (tarball Tue Feb 14 20:23:29

Re: [MonoTouch] XCode 4.3 Issues?

2012-02-16 Thread Alex Soto
Nope i went to developer.apple.com and accessed to my dev account and at the bottom you will find it, but first install beta version of monodevelop and monotouch Alex Enviado desde mi iPhone El 16/02/2012, a las 11:43 p.m., Jason Awbrey ja...@awbrey.net escribió: are you manually downloading

[MonoTouch] Cannot use profiler after changing output file!

2012-02-16 Thread Xy
I changed the output file location to somewhere in my document folder. Now when I run the profile I get this msg Only 1 document can be opened at a time, and the profiler is unusable--cannot create heapshot at all. I tried changing the filename to be an uncreated file, no go. How do I fix this or