<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: MUPhotoView 1.1</title>
	<atom:link href="http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/</link>
	<description>If I could put reflection under this header, I would.</description>
	<pubDate>Wed, 20 Aug 2008 20:38:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: blake</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1586</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Sat, 13 May 2006 16:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1586</guid>
		<description>Whamoo - I'm not sure what you mean?</description>
		<content:encoded><![CDATA[<p>Whamoo - I&#8217;m not sure what you mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: whamoo</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1576</link>
		<dc:creator>whamoo</dc:creator>
		<pubDate>Sat, 13 May 2006 10:53:01 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1576</guid>
		<description>Hi blake,

first of all thanks for this class, it's really interesting!
Second i've noticed a bug (or better an unwanted behavior), when loading the photo in your view, the last photo is selected by begin (also in your demo), if i have time i will discover the problem and send you the patch, if you are more fast than me, i will be happy to use the revised version!

Bye</description>
		<content:encoded><![CDATA[<p>Hi blake,</p>
<p>first of all thanks for this class, it&#8217;s really interesting!<br />
Second i&#8217;ve noticed a bug (or better an unwanted behavior), when loading the photo in your view, the last photo is selected by begin (also in your demo), if i have time i will discover the problem and send you the patch, if you are more fast than me, i will be happy to use the revised version!</p>
<p>Bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blake</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1480</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Sun, 07 May 2006 07:59:22 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1480</guid>
		<description>Steven - Hmmm, well, titles are my next "to do". If you want it to be generic, then there are really 3 ways. The first is via bindings, by including another array of NSString titles. The second is by asking the delegate for the title at a given index. The third is somewhat new for MUPhotoView and involves looking for a title key inside one of the other, already bound, elements - i.e. allowing somebody to bind an object that provides an image and a title. I plan to try and provide all three methods and allow implementers to supply whichever works best for them... but since I have no idea &lt;b&gt;when&lt;/b&gt; I'll get around to adding that, please feel free!</description>
		<content:encoded><![CDATA[<p>Steven - Hmmm, well, titles are my next &#8220;to do&#8221;. If you want it to be generic, then there are really 3 ways. The first is via bindings, by including another array of NSString titles. The second is by asking the delegate for the title at a given index. The third is somewhat new for MUPhotoView and involves looking for a title key inside one of the other, already bound, elements - i.e. allowing somebody to bind an object that provides an image and a title. I plan to try and provide all three methods and allow implementers to supply whichever works best for them&#8230; but since I have no idea <b>when</b> I&#8217;ll get around to adding that, please feel free!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1479</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Sun, 07 May 2006 07:09:13 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1479</guid>
		<description>Looks great - but what would be the shortest path to putting text beneath these?  I may dive into the code but I'm sure you might have some pointers on the quickest route to putting --for example-- the image name beneath the photo.</description>
		<content:encoded><![CDATA[<p>Looks great - but what would be the shortest path to putting text beneath these?  I may dive into the code but I&#8217;m sure you might have some pointers on the quickest route to putting &#8211;for example&#8211; the image name beneath the photo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blake</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1374</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Tue, 02 May 2006 21:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1374</guid>
		<description>Hey Marc,

Every time the view gets a drawRect: call, it determines which photos fit inside that rect, and then attempts to draw them. When the view first displays, it's probably getting a -drawRect call with it's entire frame as the rect. You may be able to muck around the code and see if there's a way to bypass that first draw and instead attempt to just draw the visible rect.

-Blake</description>
		<content:encoded><![CDATA[<p>Hey Marc,</p>
<p>Every time the view gets a drawRect: call, it determines which photos fit inside that rect, and then attempts to draw them. When the view first displays, it&#8217;s probably getting a -drawRect call with it&#8217;s entire frame as the rect. You may be able to muck around the code and see if there&#8217;s a way to bypass that first draw and instead attempt to just draw the visible rect.</p>
<p>-Blake</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marc</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1369</link>
		<dc:creator>marc</dc:creator>
		<pubDate>Tue, 02 May 2006 19:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1369</guid>
		<description>Hi Blake,

I have an NSImage array created via initByReferencingFile: which actually takes no time as NSImage objects are loaded lazily only when needed. 
Using setPhotosArray: somehow seems to force loading all of the NSImage objects even though this would not be necessary.

Cheers
marc</description>
		<content:encoded><![CDATA[<p>Hi Blake,</p>
<p>I have an NSImage array created via initByReferencingFile: which actually takes no time as NSImage objects are loaded lazily only when needed.<br />
Using setPhotosArray: somehow seems to force loading all of the NSImage objects even though this would not be necessary.</p>
<p>Cheers<br />
marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blake</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1340</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Tue, 02 May 2006 00:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1340</guid>
		<description>Hey Marc,

The view itself does not load any images - that's something it defers to your application. If you're using delegation, it directly asks for them. If you're using bindings, it expects an array of NSImage objects. In both cases, it's the app's responsibility to load the images from their appropriate location - file, url, etc.

So any speed hit in the initial display is your app (or my app, in the case of the demo) reading the images from disk to start with. It should be fairly easy to NOT load them all at once - which should be pretty quick.

-Blake</description>
		<content:encoded><![CDATA[<p>Hey Marc,</p>
<p>The view itself does not load any images - that&#8217;s something it defers to your application. If you&#8217;re using delegation, it directly asks for them. If you&#8217;re using bindings, it expects an array of NSImage objects. In both cases, it&#8217;s the app&#8217;s responsibility to load the images from their appropriate location - file, url, etc.</p>
<p>So any speed hit in the initial display is your app (or my app, in the case of the demo) reading the images from disk to start with. It should be fairly easy to NOT load them all at once - which should be pretty quick.</p>
<p>-Blake</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marc</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1329</link>
		<dc:creator>marc</dc:creator>
		<pubDate>Mon, 01 May 2006 22:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1329</guid>
		<description>Hey Blake, why does it take so long to show the images initially? Even a modest number of images (say 100) takes minutes on my machine.
I would really like to use the MUPhotoView in a project of mine but it needs to get  a lot faster on loading. Are there any chances?

Cheers
marc</description>
		<content:encoded><![CDATA[<p>Hey Blake, why does it take so long to show the images initially? Even a modest number of images (say 100) takes minutes on my machine.<br />
I would really like to use the MUPhotoView in a project of mine but it needs to get  a lot faster on loading. Are there any chances?</p>
<p>Cheers<br />
marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Black</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1302</link>
		<dc:creator>Michael Black</dc:creator>
		<pubDate>Mon, 01 May 2006 05:52:38 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1302</guid>
		<description>Thanks :)</description>
		<content:encoded><![CDATA[<p>Thanks <img src='http://blakeseely.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blake</title>
		<link>http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1294</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Mon, 01 May 2006 02:43:43 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/04/29/muphotoview-11/#comment-1294</guid>
		<description>Hey Michael - give it another try. Somehow I lost that whole directory while mucking around with another project on my site today. MUPhotoView is back up...</description>
		<content:encoded><![CDATA[<p>Hey Michael - give it another try. Somehow I lost that whole directory while mucking around with another project on my site today. MUPhotoView is back up&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
