Re: [MonoTouch] Draw polygons

2012-05-14 Thread dermotos
I know this is just rumour/speculation, but worth keeping this in mind... http://www.wired.com/gadgetlab/2012/05/apple-maps-ios6-report/ Hopefully we'll know more after the WWDC in June -- View this message in context: http://monotouch.2284126.n4.nabble.com/Draw-polygons-tp4630232p4631744.html

Re: [MonoTouch] [mono-android] sharing code between mono touch and mono for android

2012-05-14 Thread Stuart Lodge
I'm still pushing this PCL topic as far as I can - and I'm getting close now - it's looking really good :) I can now build all of MonoDroid, MonoTouch and WP7 in VS2010... And I can run MonoDroid and WP7 with portable class libraries It's just MonoTouch in MonoDevelop that I'm currently to

Re: [MonoTouch] Draw polygons

2012-05-14 Thread Nic Wise
yeah, tho the whole map thing is abstracted away, so you are dealing with ios maps (even in v3), not google maps. you'd still, I'd expect, do the poly drawing the same way. On Mon, May 14, 2012 at 9:24 AM, dermotos m...@dermotos.com wrote: I know this is just rumour/speculation, but worth

Re: [MonoTouch] Draw polygons

2012-05-14 Thread Dermot O Sullivan
Yeah I imagine as far as the developer is concerned, it wont break anything, we hope ;-) On Mon, May 14, 2012 at 6:56 PM, Nic Wise n...@fastchicken.co.nz wrote: yeah, tho the whole map thing is abstracted away, so you are dealing with ios maps (even in v3), not google maps. you'd still, I'd

Re: [MonoTouch] UIImagePickerController overlay view temporarily disappearing and reappearing

2012-05-14 Thread Okash
Changed the code to call the camera initialisation and presentation code on UI thread. Still no luck. -- View this message in context: http://monotouch.2284126.n4.nabble.com/UIImagePickerController-overlay-view-temporarily-disappearing-and-reappearing-tp4626945p4631863.html Sent from the

Re: [MonoTouch] UIImagePickerController overlay view temporarily disappearing and reappearing

2012-05-14 Thread Okash
Actually it was to do with BringSubviewToFront, cheers! Hooked into _picker.WillShowViewController event and called following inside the handler: _picker.CameraOverlayView.Superview.BringSubviewToFront(_picker.CameraOverlayView); -- View this message in context:

[MonoTouch] Testflight upload failing with 400 Bad Request

2012-05-14 Thread johnwest80
I'm not sure when it started, but for at least the past 2 days, uploading to Testflight takes many minutes, only to fail with 400 Bad Request. Is this functionality broken? I changed nothing on my end from the last time it worked. -- View this message in context:

[MonoTouch] Open iTunes Store from App

2012-05-14 Thread rafaelc
Hello, I´m using MTDialog, I want to open iTunes Store with a URL, not Safari browser, I used this code: /new HtmlElement (Meditaciones,http://itunes.apple.com/mx/artist/bernardo-kushala-camarena/id415517419?ign-mpt=uo%3D4;),/ The link was generated with iTunes Link Maker I tried also with this

Re: [MonoTouch] Testflight upload failing with 400 Bad Request

2012-05-14 Thread Nic Wise
I had the same problem here with MD3. Using the browser, it works, but it was SLOOOW. I see TF has just had a big load-balancer-related outage, which might be part of the problem On Sun, May 13, 2012 at 10:56 PM, johnwest80 monoto...@johnwest.com wrote: I'm not sure when it started, but

[MonoTouch] Problem binding Sybase SQL Anywhere UltraLiteJNI12.jar

2012-05-14 Thread James Lavery
Hi all, Apologies if this ends up as a double posting - I posted via Nabble but it didn't think I was a member of the list... We need to use a Sybase Ultralite database in our Mono for Android app (it's a port of an existing application, synchronising with a Sybase server database). I'm

Re: [MonoTouch] Problem binding Sybase SQL Anywhere UltraLiteJNI12.jar

2012-05-14 Thread Nic Wise
You need to try the monodroid list :) On Mon, May 14, 2012 at 4:52 PM, James Lavery ja...@microsec.co.uk wrote: Hi all, Apologies if this ends up as a double posting – I posted via Nabble but it didn’t think I was a member of the list... We need to use a Sybase Ultralite database in our

Re: [MonoTouch] Problem binding Sybase SQL Anywhere UltraLiteJNI12.jar

2012-05-14 Thread James Lavery
Hi Nic, Oh fooey (or worse)! Thanks - got wrong list! And it's only Monday. Please ignore my random ramblings James -Original Message- From: Nic Wise [mailto:n...@fastchicken.co.nz] Sent: 14 May 2012 17:24 To: James Lavery Cc: monotouch@lists.ximian.com Subject: Re: [MonoTouch]

Re: [MonoTouch] Problem binding Sybase SQL Anywhere UltraLiteJNI12.jar

2012-05-14 Thread Roy Goode
It's OK, your duplicate is on the MfA thread :) On 14 May 2012 11:26, James Lavery ja...@microsec.co.uk wrote: Hi Nic, Oh fooey (or worse)! Thanks - got wrong list! And it's only Monday. Please ignore my random ramblings James -Original Message- From: Nic Wise

Re: [MonoTouch] [SOLVED]Universal App Default-Landscape issue

2012-05-14 Thread johnHolmes
Solved, switched from alpha to stable, then switched back to alpha from stable. -- View this message in context: http://monotouch.2284126.n4.nabble.com/Universal-App-Default-Landscape-issue-tp4626001p4632929.html Sent from the MonoTouch mailing list archive at Nabble.com.

[MonoTouch] UIBarButtonItems are not firing in UIViewController

2012-05-14 Thread celticfrost
Hello, Have spent countless hours but can't figure out why a simple piece of code is not working. I have a UIViewController that has a tableview. I have added Edit on the navigation bar but it doesn't seem to fire for some reason. At class-level I have a variable: UIBarButtonItem buttonEdit;

[MonoTouch] Monotouch Dialog ActivityElement not visible on Ipad

2012-05-14 Thread Alejandro Vazquez
Hi, I have an universal application that uses Monotouch Dialog. I found that the ActivityElement on iPad device is not working. The activity icon is not visible. I figure out a way to make it visible but don't know if is the right solution: I create a custom ActivityElement (inherits from MTD

Re: [MonoTouch] Open iTunes Store from App

2012-05-14 Thread Craig Dunn
Are you testing on a real device? Because the simulator doesn't have the iTunes app, it can only show links in Safari (same goes for AppStore and Maps links). I just ran this on my iPhone var u = new NSUrl( http://itunes.apple.com/mx/album/meditacion-del-testigo/id415533606?uo=4;);

Re: [MonoTouch] UIBarButtonItems are not firing in UIViewController

2012-05-14 Thread Bill Holmes
I tried your code and did not have the problem you mentioned. Your bug may be in your xib file. I did not use an xib for my testing. For my AppDelegate this is my FinishedLaunching code... public override bool FinishedLaunching (UIApplication app, NSDictionary options) { window = new

Re: [MonoTouch] MultiScreen: Return value from child to parent

2012-05-14 Thread Bill Holmes
There are many ways to do this. One is to keep a member variable of the child view controller in the parent. The child view controller will expose properties to provide the results of the view's data collection. Finally the root view controller should override the ViewWillAppear method and

Re: [MonoTouch] Stream and NSStream and Asset Library

2012-05-14 Thread Felix Collins
I've written a stream wrapper for an AssetRepresentation that takes an asset-library URL as a ctor param. If anyone else is interested let me know and I can put the code up somewhere... ___ MonoTouch mailing list MonoTouch@lists.ximian.com