Make Your App Look Cool Recently I watched a video from WWDC 2013, where the presenters showed how to create a background image for a button that blurs the image underneath. This takes advantage of a new method in iOS 7 - DrawViewHierarchy(). This method lets you get an UIImage of your background, and blurring… Read More
As promised, I will show you how to call Javascript functions and how to pass parameters item them. This could be pretty useful if you wanted to make your application scriptable. Business logic can be written in Javascript, and then called with your custom parameters from C#! It's pretty simple actually. The Script First, lets… Read More
The JavaScriptCore Framework introduced with iOS 7 allows developers to access the full JavaScript runtime from within their apps. Getting Started It's really easy to use the JavaScriptCore Framework with Xamarin.iOS. In your project, add a new usingstatement. using MonoTouch.JavaScriptCore; JSContext and JSValue There are two main types used when working with the… Read More