Archive for 'MonoTouch'
Hey everyone, while working on my latest project, i discovered the need to search the address book for a phone number. Through my travels, I DID discover that it seems this functionality isn’t exposed by default with the native iOS libraries, or if it is, its with NSArrays, and NSObjects which can be slower than [...]
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, today FAK finally released his AWESOME 3d mapping library, and i began to cut my teeth on it. it annoyed me that double tap wasn’t there so i added it in, and removed the tilt during zoom functionality as well. I was thinking either 3 touch tilt (ahill’s idea) or maybe a touch [...]
Hey guys, i was informed that i used a weak cipher combination on my last post and example. I’ve done some more reading, learned a ton more about encryption today , and have come up with this based on the MSDN examples, and some more reading. Cheers. 1 2 3 4 5 6 7 8 [...]
Hey everyone. I threw this together a week ago to facilitate xml serialization of .net objects and storing them encrypted in StandardUserDefaults, or for transmitting encrypted data or whatever. Here’s the class enjoy. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [...]
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