Archive for 'MonoTouch.Dialog'
I fixed up the BooleanImageElement to draw the On/Off slider in the correct location on the view now, it detects what device it is, and based on that it changes the X value accordingly. http://github.com/SuperYeti/MonoTouch.Dialog
Well after a bit of a hiatus on iOS Dev, i’m back. I added a new “SpiffyDialogViewController” to the MT.D.Ext library today. Its based off of Miguel’s code sample in MT.d to do a backgroun image on a UITable, but wasn’t working correctly on the iPad aka not at all. So i did some research [...]
Hey everyone. I’ve released the 1st version of MonoTouch.Dialog.Extensions at http://github.com/SuperYeti/MonoTouch.Dialog.Extensions. The first addition is a UrlImageStringElement extension that will load an image and caption from a URL, save the image on the file system, and create a thumbnail for it. This also utilizes an LRU cache, and download throttling mechanism thanks to Miguel for [...]
Well today i built a quick little File system browser for the iPhone using MonoTouch.Dialog as a little POC. It goes and recurses your documents directory, and allows you to navigate through the folder structure, and click on files to see an alert with the name.
Well Miguel went to merge some/all of my changes on my fork into trunk today, and there were a ton of whitespace and formatting changes. i went through and cleaned these up, and pulled from trunk to make it more consistent. While i was in there i included all of Miguel’s recent changes, and made [...]
Hey guys, per Miguel’s request i’ve removed the ctor’s for the editing and auto-rotate functionality, and removed the dependancy on UserDefaults. now you can just use a block statement to instantiate a new dialogviewcontroller with auto-rotate enabled. it is disabled by default. Cheers. http://github.com/SuperYeti/MonoTouch.Dialog
Hey guys. more new updates to my fork of MonoTouch.Dialog today. Added in support for editing and deleting rows inside radio elements. I overrode the appropriate method in the TableViewController, and added in an event to bubble the properties out for later databinding, and in the mean time so i could update the login i [...]
Hey everyone, i’ve uploaded some more changes to the SuperYeti fork of the MT.Dialog library. I removed the orientation mode lock i was working on, after hashing it a bit further i decided it was a bad idea, so its gone. After doing some more work with NSUserDefaults today on my 2nd app im starting [...]
Hi all, i’ve uploaded my latest changes to my fork of MT.Dialog. I’ve included the HTML Attribute changes Miguel posted recently, and have also updated the HTMLElement to include auto-rotate functionality as well now. Please take a look, and let me know if there’s anything else you’d like to see added. Cheers. http://github.com/SuperYeti/MonoTouch.Dialog
Hey guys, today i decided to make a little helper view for google charts, so you can create a dataset, send it to google, and get a chart in an html view back. Here’s the code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [...]