Re: [MonoTouch] Newtonsoft.Json problem with Twitterizer

2011-12-21 Thread kpijnenburg
I'm getting a little further. I found somewhere online a monotouch twitterizer version Netwonsoft.JSON. It now correctly works in the Simulator but on the device i get: Dec 21 12:36:21 unknown UIKitApplication:com.supportware.MyFootballProHD[0x99ac][3488] Notice: Unhandled Exception:

Re: [MonoTouch] Newtonsoft.Json problem with Twitterizer

2011-12-21 Thread Sebastien Pouliot
Hello, It looks like your using an old and/or miscomputed version of the assembly (that requires things, like SRE, that is not available on iOS devices). See http://stackoverflow.com/q/8342567/220643 for a similar question (and answers). Regards, Sebastien On Wed, Dec 21, 2011 at 6:45 AM,

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

2011-12-21 Thread fsantanac
Thanks Nic. For all who need it, i belive that is the solution for QA1719 Apple document. 1. Store the bd in Caches string baseDir = Directory.GetParent(Environment.GetFolderPath( Environment.SpecialFolder.Personal)).ToString();

[MonoTouch] Get Device free disk space

2011-12-21 Thread johnHolmes
Hi all, it's possibile with MT to get available/free disk space on the device? I've found this topic on stackoverflow but I'm unable to translate in mt :( http://stackoverflow.com/questions/5712527/ios-how-to-detect-total-available-free-disk-space-on-the-iphone-ipad-device -- View this message

Re: [MonoTouch] Jan 23 Austin Apple event

2011-12-21 Thread Dean Cleaver
Jason, I'm not attending, but I live in Austin so would be interested in a meetup at some stage. Dino From: monotouch-boun...@lists.ximian.com [mailto:monotouch-boun...@lists.ximian.com] On Behalf Of Jason Awbrey Sent: Wednesday, December 21, 2011 10:34 AM To: Forums, MonoTouch Subject:

Re: [MonoTouch] Get Device free disk space

2011-12-21 Thread Shawn Baker
I've been using this: string path = Environment.GetFolderPath(Environment.SpecialFolder.Personal); NSDictionary dictionary = NSFileManager.DefaultManager.GetFileSystemAttributes(path); NSNumber number = (NSNumber)dictionary.ObjectForKey(NSObject.FromObject(NSFileManager.SystemFreeSize));

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

2011-12-21 Thread johnHolmes
fsantanac wrote 2. Mark the db or file as do not backup NSFileManager.SetSkipBackupAttribute(dbFile,true); I'm trying to use the same approach but i get this error (on the simulator) System.DllNotFoundException /usr/lib/system/libsystem_kernel.dylib at (wrapper managed-to-native)

Re: [MonoTouch] Jan 23 Austin Apple event

2011-12-21 Thread Nic Wise
I went to the London one. The content wasn't outstanding, esp if you have seen the WWDC content, but you do get to book time with their appstore people and get a UX review (or anything else, like WWDC). that alone is worth going for. Book early tho. As soon as you get there. Can be freaky, but

Re: [MonoTouch] Get Device free disk space

2011-12-21 Thread johnHolmes
Thanks, that's exacatly what I was looking for! -- View this message in context: http://monotouch.2284126.n4.nabble.com/Get-Device-free-disk-space-tp489p4222515.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing

[MonoTouch] Linq question

2011-12-21 Thread akobold
I am converting an application from windows forms to mono touch. The following code works fine on windows forms (visual studio) DataTable table; ... var rem = (from t in table.AsEnumerable().CastDataRow() where t.Fieldint(id) == i.ID select t).ToArrayDataRow();