307 reputation
313
bio website mindjuice.net
location Vancouver, Canada
age 43
visits member for 3 years, 1 month
seen yesterday
stats profile views 21

President and CEO of indie iPhone developer, Mind Juice Media.


Jun
11
awarded  Necromancer
May
16
answered Iterating over non-incremental Enum
May
2
awarded  Notable Question
Jan
3
comment C# version of java's synchronized keyword?
It doesn't have an equivalent "keyword", but as Marc Gravell's answer above shows, you can synchronize at the method level using the [MethodImpl(MethodImplOptions.Synchronized)] annotation.
Jan
3
awarded  Critic
Dec
19
comment NSLocalizedString woes
It was a long shot. Glad you found the issue.
Dec
19
comment NSLocalizedString woes
Is your ViewControllerB perhaps in a different bundle? NSLocalizedString() only pulls from the main bundle.
Dec
18
accepted How do you increase the heap size of a Mono for Android application?
Dec
18
accepted Can I force a .NET XmlDocument instance to release the memory it's holding sooner?
Dec
18
asked How can I prevent UIScrollView from stopping inertia when updating a child view while scrolling?
Dec
18
comment Changing centering of content within UIScrollView
Thanks for this answer. I was already using ContentInsets, but the problem was that they were there even when zoomed in. With your method, there is no more content inset when zoomed in. I ported it to C# for MonoTouch and it worked perfectly. You also introduced me to the scrollViewDidZoom method, which opens up all sorts of possibilities for changing things while zooming.
Dec
6
awarded  Popular Question
Dec
4
awarded  Investor
Nov
20
awarded  Yearling
Oct
7
awarded  Popular Question
Sep
21
comment “Add as Link” for folders in Visual Studio projects
After adding this to my project, VS 2010 copied the referenced files into my project's folder. Totally NOT what I wanted. Is it possible to have it just add references without copying the files?
Sep
18
revised use UILongPressGestureRecognizer on disabled UIButton
added 87 characters in body
Sep
18
answered use UILongPressGestureRecognizer on disabled UIButton
Aug
28
comment iOS - UIScrollView is not working (it doesn't scroll at all - the image stays fixed)
Alex: The advice to release manually at the end of the loop is good for non-ARC code. One thing though, we DO know exactly when the runtime will release the images if you use autorelease. It will always happen at the end of the the event loop. This is reference counting, not garbage collection.
Aug
15
answered How do you increase the heap size of a Mono for Android application?