The beta for MonoTouch 1.2 is now available for developers interested in trying out the upcoming features in MonoTouch. This is a beta release, not a fully tested release, we are doing this release to give users early access to the new debugging support in MonoTouch.
The Software
The beta of MonoTouch 1.2 includes:
To download the full edition, you will need to enter the email address that you used to buy MonoTouch and the password is the activation code that you received on the email when you purchased MonoTouch (notice that the password is case sensitive).
New Features
- Debugger, works on Simulator and Device (using Wifi)
- C# binding generator for Objective-C Libraries.
- stdout/stderr are now redirected from the device to MonoDevelop.
MonoTouch API additions:
- UITableView now has a new property "Source" that allows a new UITableViewSource type to be assigned to it, it is a Model that implements both the UITableViewDelegate and the UITableViewDataSource, this should reduce clutter in existing code. Brent has written a detailed update on using the UITableView with this new property.
- NSTimer.Dispose will now call Invalidate first, and then dispose the timer.
- UIActionSheet now can be initialized like this:
- new UIActionSheet ("Title") { "Help", "Open in Browser", "Bookmark" }
- Added NSKeyedArchiver, NSKeyedUnarchiver.
- Added Encoder virtual method on NSObject.
- NSData and NSMutableData now have indexers.
- Added ShouldHandleCookies setter to NSMutableUrlRequest.
- Made Class:.ctor(IntPtr) public for the binding generator
Mono Runtime API additions:
- Added System.Timers.Timer
- Added System.Threading.Semaphore
- Added System.Threading types to System.dll
API fixes
Updated OpenTK to r2350.
System.Data
A preview of the System.Data and SQLite for MonoTouch is now available.
- Mono.Data.Sqlite.dll: unchanged. Note that this binding is against SQLite 3.6, while iPhone has SQLite 3.0, so use of some functionality will result in EntryPointNotFoundExceptions. Such missing functionality appears to include DataSet support.
- Mono.Data.Tds.dll: unchanged.
- System.Data.dll: Removes code-generation capabilities (System.Data.TypedDataSetGenerator), .config handling support, System.Data.Common.DbProviderFactories, System.Data.OleDb, System.Data.Odbc.
- System.Data.SqlClient is present.
- System.Transactions.dll: unchanged.
Fixes
- Fixed crash using async socket operations
- Fixed i18n in mtouch (Please provide documentation!)
- iPhoneOSGameView.Run() will no longer truncate the timeout to have 1ms resolution. It will now have 100ns resolution.
- Fixed crash with multi-threaded apps that could break the app on startup on 3G phones.