<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Dimzzy - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-91781023" type="application/json"/><link>http://dimzzy.disqus.com/</link><description>None</description><atom:link href="http://dimzzy.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Mon, 23 Jan 2012 09:45:28 -0000</lastBuildDate><item><title>Re: UIViews Cache for Reuse</title><link>http://www.dimzzy.com/blog/2010/02/uiviews-cache-for-reuse/#comment-418663861</link><description>Look out that the view you get out of the cache doesn't have it's alpha set to 0. I've seen instances where UITableView sets the alpha to 0. And if you turn around and hand one of those back to the table view, it doesn't set the alpha back to 1.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mark Krenek</dc:creator><pubDate>Mon, 23 Jan 2012 09:45:28 -0000</pubDate></item><item><title>Re: Remote Image for iPhone</title><link>http://www.dimzzy.com/blog/2009/11/remote-image-for-iphone/#comment-414868354</link><description>Hi! Very nice, it is just what I was looking for!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Olav Gausaker</dc:creator><pubDate>Wed, 18 Jan 2012 20:08:24 -0000</pubDate></item><item><title>Re: Blur effect for UIView</title><link>http://www.dimzzy.com/blog/2010/11/blur-effect-for-uiview/#comment-414843222</link><description>This worked perfectly for me: &lt;a href="http://www.iphonedevwiki.net/index.php?title=CAFilter" rel="nofollow"&gt;http://www.iphonedevwiki.net/i...&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zammbi</dc:creator><pubDate>Wed, 18 Jan 2012 19:23:23 -0000</pubDate></item><item><title>Re: UIViews Cache for Reuse</title><link>http://www.dimzzy.com/blog/2010/02/uiviews-cache-for-reuse/#comment-413873290</link><description>I've documented a similar approach that avoids subclassing (not better, just different): &lt;a href="http://bit.ly/xbi3Us" rel="nofollow"&gt;http://bit.ly/xbi3Us&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">isaac</dc:creator><pubDate>Tue, 17 Jan 2012 19:44:17 -0000</pubDate></item><item><title>Re: Proper deselection in UITableView</title><link>http://www.dimzzy.com/blog/2011/10/proper-deselection-in-uitableview/#comment-367823216</link><description>It should in fact be in viewWillAppear:. That means that the deselection animation is happening during the navigation controller animation. In viewDidAppear:, the animation will happened *after* the navigation animation.&lt;br&gt;&lt;br&gt;It just looks better.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guillaume Campagna</dc:creator><pubDate>Fri, 18 Nov 2011 15:32:41 -0000</pubDate></item><item><title>Re: BASequenceControl to complement UISegmentedControl</title><link>http://www.dimzzy.com/blog/2011/11/basequencecontrol-to-complement-uisegmentedcontrol/#comment-366743069</link><description>My pleasure )))</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dimzzy</dc:creator><pubDate>Thu, 17 Nov 2011 12:12:29 -0000</pubDate></item><item><title>Re: BASequenceControl to complement UISegmentedControl</title><link>http://www.dimzzy.com/blog/2011/11/basequencecontrol-to-complement-uisegmentedcontrol/#comment-366734742</link><description>Perfect. Many thanks for the insight and the quick reply!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John M</dc:creator><pubDate>Thu, 17 Nov 2011 12:01:50 -0000</pubDate></item><item><title>Re: BASequenceControl to complement UISegmentedControl</title><link>http://www.dimzzy.com/blog/2011/11/basequencecontrol-to-complement-uisegmentedcontrol/#comment-366728570</link><description>You have to set overlapWidth property on it; look at the sample code in BADemo project (search for BADemo on github).&lt;br&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dimzzy</dc:creator><pubDate>Thu, 17 Nov 2011 11:53:48 -0000</pubDate></item><item><title>Re: BASequenceControl to complement UISegmentedControl</title><link>http://www.dimzzy.com/blog/2011/11/basequencecontrol-to-complement-uisegmentedcontrol/#comment-366722400</link><description>Hi - thanks so much for sharing this control! I'm hoping to utilize it in one of the projects that I'm currently working on. Quick question... I was hoping to setup the control like the "Alpha, Beta, Gamma" version you have shown in your screenshot. However, when I attempt to, it appears like the image I've attached, without showing the "tails" of the arrow in the highlight. I would greatly appreciate any quick insight you could give me on what I'm doing wrong.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;    BASequenceControl *sequenceControl = [[BASequenceControl alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;    [sequenceControl addSegmentWithTitle:@"One" animated:NO];&lt;br&gt;    [sequenceControl addSegmentWithTitle:@"Two" animated:NO];&lt;br&gt;    [sequenceControl addSegmentWithTitle:@"Three" animated:NO];    [self.view addSubview:sequenceControl];Thanks!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John M</dc:creator><pubDate>Thu, 17 Nov 2011 11:46:06 -0000</pubDate></item><item><title>Re: Proper deselection in UITableView</title><link>http://www.dimzzy.com/blog/2011/10/proper-deselection-in-uitableview/#comment-351897871</link><description>Hmm, looks like you are right. But actually I don't see any difference if it's called from 'will' or 'did' method. Actually it seems to me more logical to do it in 'did' method because you want to show user how selection fades away so it should be done after the table appears.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dimzzy</dc:creator><pubDate>Mon, 31 Oct 2011 08:59:29 -0000</pubDate></item><item><title>Re: Proper deselection in UITableView</title><link>http://www.dimzzy.com/blog/2011/10/proper-deselection-in-uitableview/#comment-349106814</link><description>That should be in viewWillAppear correct? UITableViewController implements it as such:&lt;br&gt;&lt;br&gt;&lt;a href="http://developer.apple.com/library/ios/ipad/#documentation/UIKit/Reference/UITableViewController_Class/Reference/Reference.html" rel="nofollow"&gt;http://developer.apple.com/lib...&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chris Gummer</dc:creator><pubDate>Sat, 29 Oct 2011 19:08:22 -0000</pubDate></item><item><title>Re: External scrollbar for UIScrollView</title><link>http://www.dimzzy.com/blog/2011/01/external-scrollbar-for-uiscrollview/#comment-332423686</link><description>ty very much for ur sample program :D</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Choco_mark03</dc:creator><pubDate>Wed, 12 Oct 2011 04:30:08 -0000</pubDate></item><item><title>Re: Complementary Headers in UITableView</title><link>http://www.dimzzy.com/blog/2010/02/complementary-headers-in-uitableview/#comment-331299187</link><description>Thanks for the post.  I was about to give up on the above problem.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">guest</dc:creator><pubDate>Mon, 10 Oct 2011 19:46:15 -0000</pubDate></item><item><title>Re: Customizable UIPageControl Clone</title><link>http://www.dimzzy.com/blog/?p=109#comment-316585204</link><description>Thanks a lot!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Popperur</dc:creator><pubDate>Wed, 21 Sep 2011 07:47:10 -0000</pubDate></item><item><title>Re: Customizable UIPageControl Clone</title><link>http://www.dimzzy.com/blog/?p=109#comment-307325923</link><description>Thanks, clearest example I've found</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Julian</dc:creator><pubDate>Sun, 11 Sep 2011 16:06:45 -0000</pubDate></item><item><title>Re: Java Idioms for Good and Evil</title><link>http://www.dimzzy.com/blog/2009/10/java-idioms-for-good-and-evil/#comment-290356457</link><description>"but typically we write code once and read it several times later so I would prefer more readable version"&lt;br&gt;&lt;br&gt;I consider this argument as erroneous. I think the psichological effort to read out something is highly connected with the effort to create that thing. This is due to our empathic nature. Furthermore, reading out many signs in a row is harder that reading out words. Parentheses grow the visual complexity of the code, it's hard to resolve their scope.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Márton Sári</dc:creator><pubDate>Thu, 18 Aug 2011 16:24:18 -0000</pubDate></item><item><title>Re: Blur effect for UIView</title><link>http://www.dimzzy.com/blog/2010/11/blur-effect-for-uiview/#comment-228444387</link><description>If you do this several times: downscale, upscale, downscale (not the original but the result from first iteration), upscale...you can achieve a pretty good and heavy blur.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arkano22</dc:creator><pubDate>Fri, 17 Jun 2011 14:55:24 -0000</pubDate></item><item><title>Re: Customizable UIPageControl Clone</title><link>http://www.dimzzy.com/blog/?p=109#comment-203537501</link><description>This is really great. Thanks for releasing this. Thanks for releasing this.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul</dc:creator><pubDate>Sat, 14 May 2011 08:34:53 -0000</pubDate></item><item><title>Re: Remote Image for iPhone</title><link>http://www.dimzzy.com/blog/2009/11/remote-image-for-iphone/#comment-178626240</link><description>Hi can you give as a simple Example use of this class ?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Masterjcl</dc:creator><pubDate>Tue, 05 Apr 2011 14:12:22 -0000</pubDate></item><item><title>Re: UIViews Cache for Reuse</title><link>http://www.dimzzy.com/blog/2010/02/uiviews-cache-for-reuse/#comment-144748389</link><description>Thanks! Actually I don't care what you will do with it but if you want some license let's add BSD to it )))</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dimzzy</dc:creator><pubDate>Fri, 11 Feb 2011 10:26:20 -0000</pubDate></item><item><title>Re: UIViews Cache for Reuse</title><link>http://www.dimzzy.com/blog/2010/02/uiviews-cache-for-reuse/#comment-144743266</link><description>Hey this is great! Small request-- there's not an explicit license in the source. Any chance of getting a BSD license thrown on there so it can be used commercially? Thanks :-)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Aaron Sarazan</dc:creator><pubDate>Fri, 11 Feb 2011 10:18:05 -0000</pubDate></item><item><title>Re: Remote Image for iPhone</title><link>http://www.dimzzy.com/blog/2009/11/remote-image-for-iphone/#comment-135164910</link><description>Give some sample to use this RemoteImage... As soon as possible</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Naganesh90</dc:creator><pubDate>Wed, 26 Jan 2011 23:55:51 -0000</pubDate></item><item><title>Re: HyperParser: Tolerant HTML Parser</title><link>http://www.dimzzy.com/blog/2009/10/hyperparser-tolerant-html-parser/#comment-122928228</link><description>Thanks for doing this.  I was going nuts trying to find an easy way to parse some dirty html.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Shawn Stanley</dc:creator><pubDate>Sat, 01 Jan 2011 15:08:04 -0000</pubDate></item><item><title>Re: Jackrabbit on the Run</title><link>http://www.dimzzy.com/blog/2009/10/jackrabbit-on-the-run/#comment-110553655</link><description>Hi Dmitry,&lt;br&gt;&lt;br&gt;I got this error when I tried this.  I am using Eclipse helios, JCR-2.1.2, and included slf4j-1.6.1 in the classpath.&lt;br&gt;&lt;br&gt;Any idea?&lt;br&gt;&lt;br&gt;java.lang.ClassNotFoundException: org.slf4j.LoggerFactory&lt;br&gt;	at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:506)&lt;br&gt;	at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)&lt;br&gt;	at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)&lt;br&gt;	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)&lt;br&gt;	at java.lang.ClassLoader.loadClass(Unknown Source)&lt;br&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">OliverF</dc:creator><pubDate>Sun, 12 Dec 2010 02:22:43 -0000</pubDate></item><item><title>Re: Customizable UIPageControl Clone</title><link>http://www.dimzzy.com/blog/?p=109#comment-110260980</link><description>Brilliant !  Thanks for writing up the code that is separate from the UIPageControl implementation. This way, there is no risk once Apple decides to change the implementation of the UIPageControl class.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dani</dc:creator><pubDate>Sat, 11 Dec 2010 08:04:53 -0000</pubDate></item></channel></rss>
