[MonoTouch] Redraw views just before rotation animation starts, getting wait_fences: failed to receive reply

2012-07-20 Thread HairyJohn
Hi guys, Im using an observer which is setup in ViewDidLoad: NSNotificationCenter.DefaultCenter.AddObserver(UIDevice.OrientationDidChangeNotification, DeviceRotated); Im looking to redraw my views when the device is rotated but before the rotation animation starts. Ive got it working and it looks

[MonoTouch] running the simulator on 10.8 problem

2012-07-20 Thread Nino Damjanoski
After install on 10.8, running my project gives me this error: Failed to launch the simulator: Could not load the simulator: dlopen(/Applications/Xcode45-DP1.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/iPhoneSimulatorRemoteClient.framework/Version

Re: [MonoTouch] Redraw views just before rotation animation starts, getting wait_fences: failed to receive reply

2012-07-20 Thread René Ruppert
You should override WillRotateToInterfaceOrientation() and do your redrawing in there. Grüße, René Am 20.07.2012 um 11:40 schrieb HairyJohn : > Hi guys, > Im using an observer which is setup in ViewDidLoad: > NSNotificationCenter.DefaultCenter.AddObserver(UIDevice.OrientationDidChangeNotifica

[MonoTouch] Is there an app like "Codea" for MonoTouch?

2012-07-20 Thread fmuaddib
Is there an App like "Codea" ( http://twolivesleft.com/Codea/ ), but for MonoTouch? I need a way to write, compile and run my MonoTouch code directly on the iPad. I thought about writing my own realtime c# MonoTouch compiler for iPad, but I fear that this is a daunting task. But maybe there are som

Re: [MonoTouch] Redraw views just before rotation animation starts, getting wait_fences: failed to receive reply

2012-07-20 Thread HairyJohn
Hi René! Thank you for the response, I have just tried overriding: public override void WillRotate (UIInterfaceOrientation toInterfaceOrientation, double duration) butI still get the 'wait_fences: failed to receive reply' error. If I don't call SetNeedsDisplay() on my views then I don't ge

[MonoTouch] MonoDevelop, deploy to multiple devices

2012-07-20 Thread HairyJohn
Hi guys, Quick question for you, I've just done a release build on my iPhone and I want to also deploy it to my iPad. What Ive been doing is forcing a new build every time, is there a better way? If I've built it already, can't I just get MonoDevelop to deploy it? Its no biggy, just checking if I'

Re: [MonoTouch] MonoDevelop, deploy to multiple devices

2012-07-20 Thread Jason Awbrey
there should be a "Download to Device" option (or something like that) in the menu. On Fri, Jul 20, 2012 at 6:47 AM, HairyJohn wrote: > Hi guys, > Quick question for you, I've just done a release build on my iPhone and I > want to also deploy it to my iPad. What Ive been doing is forcing a new >

Re: [MonoTouch] MonoDevelop, deploy to multiple devices

2012-07-20 Thread HairyJohn
Gotcha, Upload to Device on the Run menu. Many thanks -- View this message in context: http://monotouch.2284126.n4.nabble.com/MonoDevelop-deploy-to-multiple-devices-tp4656090p4656092.html Sent from the MonoTouch mailing list archive at Nabble.com. __

Re: [MonoTouch] How to detect usage of new SDK methods?

2012-07-20 Thread HairyJohn
That looks like a +1 Rolf... ;) -- View this message in context: http://monotouch.2284126.n4.nabble.com/How-to-detect-usage-of-new-SDK-methods-tp4656082p4656093.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing lis

Re: [MonoTouch] MonoDevelop, deploy to multiple devices

2012-07-20 Thread Nic Wise
You could also push the ipa to a website, and download it from the ipad. Should work in theory. On Fri, Jul 20, 2012 at 1:47 PM, HairyJohn wrote: > Gotcha, Upload to Device on the Run menu. > > Many thanks > > > > -- > View this message in context: > http://monotouch.2284126.n4.nabble.com/Mo

Re: [MonoTouch] Is there an app like "Codea" for MonoTouch?

2012-07-20 Thread AnthonyLambert
I think your find that Apple prohibit the deployment of development tools on iOS. Any deployed app must have it functionality predetermined. -- View this message in context: http://monotouch.2284126.n4.nabble.com/Is-there-an-app-like-Codea-for-MonoTouch-tp4656088p4656095.html Sent from the Mon

Re: [MonoTouch] Is there an app like "Codea" for MonoTouch?

2012-07-20 Thread Steve Maier
Actually you can paste Lua code into Codea and have it run it. So the predetermined functionality might not be entirely accurate anymore. Sent from my iPhone On Jul 20, 2012, at 11:15 AM, AnthonyLambert wrote: > I think your find that Apple prohibit the deployment of development tools on > iO

Re: [MonoTouch] Redraw views just before rotation animation starts, getting wait_fences: failed to receive reply

2012-07-20 Thread René Ruppert
What exactly are you doing? Do you need the SetNeedsDisplay() call? Can you show some code? René Am 20.07.2012 um 12:43 schrieb HairyJohn: > Hi René! > Thank you for the response, I have just tried overriding: > public override void WillRotate (UIInterfaceOrientation > toInterfaceOrientat

[MonoTouch] Dinner Club officially live

2012-07-20 Thread technohead
Happy to announce our iPhone app! Dinner Club --personalized restaurant recommendations for individual and groups! If you like discovering new restaurants and have a discerning taste then you’ll like it. Try it out (for iPhone users)…rate some restaurants and get personalized recommendations. If

[MonoTouch] Various Roadmaps out of date....

2012-07-20 Thread AnthonyLambert
If you go to the various Mono websites, MonoDevelop, Mono, MonoMac, Monotouch. All the roadmaps are really old! Any chance they could be updated soon? It would be nice to see what's coming up in various offerings. Tony -- View this message in context: http://monotouch.2284126.n4.nabble.

[MonoTouch] Signalr and monotouch

2012-07-20 Thread Alex Soto
Hello guys, Do you know if SignalR can be used with MonoTouch?? Also any example would be great Or if you know a better solution that would be great. What I need to achieve is when the app is running in foreground i must push info from the server to the device When some records are stored in a d

Re: [MonoTouch] Signalr and monotouch

2012-07-20 Thread Craig Dunn
Mr Shackles has already done some good work getting SignalR on Xamarin https://github.com/gshackles/SignalR HTH On Jul 21, 2012, at 8:23 AM, Alex Soto wrote: > Hello guys, > > Do you know if SignalR can be used with MonoTouch?? Also any example > would be great > > Or if you know a better s

Re: [MonoTouch] Signalr and monotouch

2012-07-20 Thread Konaju Games (Dev)
We are currently using SignalR in MonoTouch, but it is not recommended yet as SignalR uses ConcurrentDictionary and that causes JIT exceptions in MonoTouch on the device. There is an open issue about this, but it has not yet been resolved. We swapped ConcurrentDictionary for a regular Dictionary

Re: [MonoTouch] Signalr and monotouch

2012-07-20 Thread Mike Kuzminski
I am using gshackles mono touch client library for mono. It hasnt been updated in a while but appears to do the trick for long polling functionality. I've struggled a bit to get up to speed with this library as there seems to be not enough examples utilizing mono touch. But so far for the simulator