[MonoTouch] NSObject Linker Issue introduced with 5.0.4

2011-12-23 Thread Augmental
We are having a linker issue at the final link stage, which did not occur previously to 5.0.4, the relevant mtouch output is: Linking assembly /Users/x/Projects/x/x-iPhone-Master/Client/iPhone/IEMobile/bin/iPhoneSimulator/Debug/IEMobileUI.exe into

[MonoTouch] WebKit error.

2011-12-23 Thread Mittchel debaass
Hello everyone, Currently I'm downloading an XML response from Google's API to retrieve data. On the emulator everything works fine, but when I'm porting it to my device it returns a weird error: 2011-12-23 15:06:43.060 Ad4You[16639:707] *** WebKit discarded an uncaught exception in the

Re: [MonoTouch] NSObject Linker Issue introduced with 5.0.4

2011-12-23 Thread Sebastien Pouliot
Hello, MakeDirty does not exists in 5.0.x. This is something new in 5.1.x. My guess is that your solution was built with 5.1.x then you downgraded to 5.0.x. A MonoDevelop bug [1] (now fixed but not released) won't rebuild all dependencies when MonoTouch is updated. So the linker was analyzing a

Re: [MonoTouch] Image Layers and Editing

2011-12-23 Thread Miguel de Icaza
Hello, I have a client that is looking to created pages of pictures where an image is shown through another layer. For instance you have a white square with a circle cut in it and the image in under the white square and the picture shows through the circle cut out. How can I offer the ability

Re: [MonoTouch] Image Layers and Editing

2011-12-23 Thread Fencer04
That makes perfect sense, thanks for responding. I can't believe I didn't think of that. I definitely over complicated it in my head. Justin Hansen On Fri, Dec 23, 2011 at 9:35 AM, Miguel de Icaza-2 [via MonoTouch] ml-node+s2284126n4228797...@n4.nabble.com wrote: Hello, I have a client that

Re: [MonoTouch] Get Device free disk space

2011-12-23 Thread Miguel de Icaza
Hello, string path = Environment.GetFolderPath(Environment.SpecialFolder.Personal); NSDictionary dictionary = NSFileManager.DefaultManager.GetFileSystemAttributes(path); NSNumber number = (NSNumber)dictionary.ObjectForKey(NSObject.FromObject(NSFileManager.SystemFreeSize)); ulong

Re: [MonoTouch] WCF Status

2011-12-23 Thread Miguel de Icaza
Hello Jeff, I currently have Silverlight apps talking to servers using WCF. In order to get as much code re-use as possible I want to use WCF in my MonoTouch (and possibly MonoDroid) apps. There did appear to be issues with WCF in earlier MonoTouch versions but my understanding is that the

Re: [MonoTouch] Await/Async. When?

2011-12-23 Thread Miguel de Icaza
We plan on releasing 2.12 early next year (January/February) and an alpha quality MonoTouch will come right after. 2.12 has a huge amount of changes so it will take a good while before we can deep it as stable. One thing to keep in mind here is that the new Async-aware compiler lives in

Re: [MonoTouch] UrlImageStore concurrent limits

2011-12-23 Thread Miguel de Icaza
Hey! So I rewrote it to use Task Parallels from .NET 4 and it works like a charm. Blogged at: http://blog.touch4apps.com/home/iphone-monotouch-development/urlimagestore-concurrent-threads-limitting-helper Lovely post! MonoTouch.Dialog also contains an async image downloader with

Re: [MonoTouch] Two problem publish app in AppStore with sqlite database

2011-12-23 Thread johnHolmes
Snow Leopard Os X 10.6.8 -- View this message in context: http://monotouch.2284126.n4.nabble.com/Two-problem-publish-app-in-AppStore-with-sqlite-database-tp4215141p4228932.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch

Re: [MonoTouch] Get Device free disk space

2011-12-23 Thread johnHolmes
even better ;) -- View this message in context: http://monotouch.2284126.n4.nabble.com/Get-Device-free-disk-space-tp489p4228939.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing list MonoTouch@lists.ximian.com

Re: [MonoTouch] Two problem publish app in AppStore with sqlite database

2011-12-23 Thread Sebastien Pouliot
Hello, I can confirm that /usr/lib/system/libsystem_kernel.dylib does not exists on my Snow Leopard system but I do have it on Lion Sebastien On Fri, Dec 23, 2011 at 10:18 AM, johnHolmes francesco.colo...@gmail.com wrote: Snow Leopard Os X 10.6.8 -- View this message in context:

[MonoTouch] Crash on Distribution version only

2011-12-23 Thread diviner
My apps is work well on Debug|iPhoneSimulator mode and Debug|iPhone and also Release|iPhone Simulator mode. But it crash on Release|iPhone and Distribution|iPhone. How to solve it? Thank you very much. Best regards, Diviner. -- View this message in context:

Re: [MonoTouch] Crash on Distribution version only

2011-12-23 Thread Rolf Bjarne Kvinge
Exactly how does it fail? Can you paste error messages / screencasts? Rolf On Fri, Dec 23, 2011 at 7:47 PM, diviner divinerc...@gmail.com wrote: My apps is work well on Debug|iPhoneSimulator mode and Debug|iPhone and also Release|iPhone Simulator mode. But it crash on Release|iPhone and

Re: [MonoTouch] Crash on Distribution version only

2011-12-23 Thread diviner
Rolf, Thanks, Rolf. I found that it is just my own mistake. I have different setting between several mode. From this case, I forgot to set the following options in Distribution: Addition mtouch arguments: -aot nimt-trampolines=2048 After I set it up, the problem is gone. Thank you very much.