<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog of Interest / 有趣的网站 &#187; Objective C</title>
	<atom:link href="http://pagesofinterest.net/blog/category/%e7%bc%96%e7%a8%8b-programming/objective-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://pagesofinterest.net/blog</link>
	<description></description>
	<lastBuildDate>Mon, 11 Jan 2010 13:21:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rotate NSImage in an NSImageView</title>
		<link>http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/</link>
		<comments>http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 23:41:34 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Snippet - 小片]]></category>
		<category><![CDATA[NSImage]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=755</guid>
		<description><![CDATA[As soon as I implemented this I realised how much of a pain it would be to copy out the arrow images, rotate them in an external program, then copy them back in. So I put some buttons next to the arrow image wells that allow the user to rotate the arrows within Slider itself.



Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/' rel='bookmark' title='Permanent Link: Tile an NSImage Within an NSBezierPath'>Tile an NSImage Within an NSBezierPath</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Permanent Link: Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/' rel='bookmark' title='Permanent Link: The Mutations of Slider&#8217;s Tab Option Pane'>The Mutations of Slider&#8217;s Tab Option Pane</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag and Drop Reordering of NSTableView&#8217;s Rows</title>
		<link>http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/</link>
		<comments>http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 13:47:59 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[NSTableView]]></category>
		<category><![CDATA[Objctive C]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=754</guid>
		<description><![CDATA[Scroll to comments
I just had to re-implement drag-and-drop-reordering of Slider cells. I was lucky enough to find my post on the Cocoa-dev list &#8211; I just had to copy-paste the code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#define MyPrivateTableViewDataType @&#34;NSMutableDictionary&#34;
&#160;
- &#40;void&#41;awakeFromNib &#123;
&#91;table registerForDraggedTypes:&#91;NSArray arrayWithObject:MyPrivateTableViewDataType&#93;&#93;;
&#125;
&#160;
- &#40;BOOL&#41;tableView:&#40;NSTableView *&#41;tv writeRowsWithIndexes:&#40;NSIndexSet *&#41;rowIndexestoPasteboard:&#40;NSPasteboard*&#41;pboard&#123;
 // Copy the row numbers to the pasteboard.
 NSData *data = &#91;NSKeyedArchiver archivedDataWithRootObject:rowIndexes&#93;;
&#160;
&#91;pboard declareTypes:&#91;NSArray [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Permanent Link: Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/03/free-ajax-loading-gif-generator/' rel='bookmark' title='Permanent Link: Free AJAX Loading GIF Generator'>Free AJAX Loading GIF Generator</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slider Update &#8211; Tab Feature Coming Together</title>
		<link>http://pagesofinterest.net/blog/2009/11/slider-update-tab-feature-coming-together/</link>
		<comments>http://pagesofinterest.net/blog/2009/11/slider-update-tab-feature-coming-together/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 10:49:56 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[Preview]]></category>
		<category><![CDATA[Tabs]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=739</guid>
		<description><![CDATA[Scroll to comments
As I finally reached a programming goal I had set &#8211; the tab hover javascript was working fairly well &#8211; I realised that users would want the option of positioning the tabs in the middle or corners of Slider&#8217;s four sides. Initially I had assumed it would be OK for users to have [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/11/slider-progress-slider-styling-option-pane/' rel='bookmark' title='Permanent Link: Slider Progress: Slider Styling Option Pane'>Slider Progress: Slider Styling Option Pane</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/' rel='bookmark' title='Permanent Link: The Mutations of Slider&#8217;s Tab Option Pane'>The Mutations of Slider&#8217;s Tab Option Pane</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Permanent Link: Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/11/slider-update-tab-feature-coming-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Prevent Noisy NSBitmapImageReps</title>
		<link>http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/</link>
		<comments>http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:00:34 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[NSBitmapImageRep]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=737</guid>
		<description><![CDATA[Scroll to comments

Images generated for Slider&#8217;s background and tabs contained a lot of noise &#8211; random ugly pixels throughout the images. 
I was unsure why this was happening, so I asked the Cocoa-Dev mailing list.
Rob Keniger kindly replied with the following solution:
&#8220;An NSBitmapImageRep is not guaranteed to be empty when you create it and in [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/' rel='bookmark' title='Permanent Link: Tile an NSImage Within an NSBezierPath'>Tile an NSImage Within an NSBezierPath</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Permanent Link: Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Permanent Link: Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mutations of Slider&#8217;s Tab Option Pane</title>
		<link>http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/</link>
		<comments>http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 08:46:15 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=727</guid>
		<description><![CDATA[Scroll to comments
During the past week, I&#8217;ve been working on Slider&#8217;s new Tab option pane. 
I took screen shots before making changes to the layout.
Here they are:




I hope I&#8217;m not tempted to change things around again&#8230; I really need to get the backend going now!

Like this post?  Move it on along with:
 Email &#124; [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/11/slider-progress-slider-styling-option-pane/' rel='bookmark' title='Permanent Link: Slider Progress: Slider Styling Option Pane'>Slider Progress: Slider Styling Option Pane</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/slider-update-tab-feature-coming-together/' rel='bookmark' title='Permanent Link: Slider Update &#8211; Tab Feature Coming Together'>Slider Update &#8211; Tab Feature Coming Together</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Permanent Link: Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing Primitives From NSDictionarys in Cocoa&#8230;</title>
		<link>http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/</link>
		<comments>http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 10:23:55 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[NSDictionary]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=721</guid>
		<description><![CDATA[Scroll to comments
This &#8220;gotcha&#8221; had me scratching my head for a little while.
Edit: this &#8220;gotcha&#8221; stemmed more from my inexperience with Cocoa than anything else. NSDictionaries store only objects, one shouldn&#8217;t try to insert int/float/bool etc into one. Instead use NSNumber for these values. Duh.
When storing various NSObjects in an NSMutableDictionary, I assumed one would [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2008/06/feel-like-a-cup-of-cocoa/' rel='bookmark' title='Permanent Link: Feel Like A Cup of Cocoa?'>Feel Like A Cup of Cocoa?</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/' rel='bookmark' title='Permanent Link: Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa'>Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Permanent Link: Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slider Progress: Slider Styling Option Pane</title>
		<link>http://pagesofinterest.net/blog/2009/11/slider-progress-slider-styling-option-pane/</link>
		<comments>http://pagesofinterest.net/blog/2009/11/slider-progress-slider-styling-option-pane/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 08:51:10 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=718</guid>
		<description><![CDATA[Scroll to comments
During the great rewrite, I&#8217;ve been trying to focus on one section at a time. The first section to come under attack was &#8220;everything pertaining to the styling of Slider that is not Arrow-related&#8221;. After much mucking-about I decided to combine the Border, Rounded Corner, Background Image, Gradient and Background Colour onto one [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/' rel='bookmark' title='Permanent Link: The Mutations of Slider&#8217;s Tab Option Pane'>The Mutations of Slider&#8217;s Tab Option Pane</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/slider-update-tab-feature-coming-together/' rel='bookmark' title='Permanent Link: Slider Update &#8211; Tab Feature Coming Together'>Slider Update &#8211; Tab Feature Coming Together</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/11/styling-js-kit-comments/' rel='bookmark' title='Permanent Link: Styling JS-Kit Comments'>Styling JS-Kit Comments</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/11/slider-progress-slider-styling-option-pane/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa</title>
		<link>http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/</link>
		<comments>http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 08:22:11 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=717</guid>
		<description><![CDATA[Scroll to comments
Another stumbling block on the road to Slider completion was this:
NSUncaughtSystemExceptionException &#8212; Uncaught system exception: signal 11
This vague and unhelpful error message (in this case) was caused by my trying to return an NSMutableString in place of an NSString:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- &#40;NSString *&#41;generateHTML&#123;
&#160;
	NSMutableString *html = &#91;NSMutableString string&#93;;
&#160;
	@try&#123;
&#160;
	//Begin wrapper
	&#91;html appendString:&#91;NSString stringWithFormat:@&#34;&#60;div id=\&#34;slider%@\&#34; style=\&#34;height:%ipx;width:%ipx;position:relative;z-index:0;margin-left:%ipx;%@\&#34;&#62;&#34;,
						UID, &#40;int&#41;portalSize.height, &#40;int&#41;portalSize.width, leftMargin, [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2008/06/feel-like-a-cup-of-cocoa/' rel='bookmark' title='Permanent Link: Feel Like A Cup of Cocoa?'>Feel Like A Cup of Cocoa?</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/' rel='bookmark' title='Permanent Link: Drag and Drop Reordering of NSTableView&#8217;s Rows'>Drag and Drop Reordering of NSTableView&#8217;s Rows</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/' rel='bookmark' title='Permanent Link: Accessing Primitives From NSDictionarys in Cocoa&#8230;'>Accessing Primitives From NSDictionarys in Cocoa&#8230;</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tile an NSImage Within an NSBezierPath</title>
		<link>http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/</link>
		<comments>http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 07:41:06 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Snippet - 小片]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[NSBezierPath]]></category>
		<category><![CDATA[NSImage]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=713</guid>
		<description><![CDATA[Scroll to comments
Another snippet I had to write during the great Slider rebuild.
I needed to be able to take an NSImage supplied by the user and tile it within an NSBezierPath defined by more user-set values.
The below example uses a rounded rectangle.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
NSBitmapImageRep *theImage = &#91;&#91;NSBitmapImageRep alloc&#93; initWithBitmapDataPlanes:NULL pixelsWide:imageSize.width pixelsHigh:imageSize.height
 bitsPerSample:8 samplesPerPixel:4 hasAlpha:YES isPlanar:NO
 colorSpaceName:NSDeviceRGBColorSpace bytesPerRow:0 [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Permanent Link: Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Permanent Link: Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/' rel='bookmark' title='Permanent Link: How to Prevent Noisy NSBitmapImageReps'>How to Prevent Noisy NSBitmapImageReps</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fill a Path With A Scaled Image, Ignoring Image Proportions</title>
		<link>http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/</link>
		<comments>http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 07:19:12 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[NSBezierPath]]></category>
		<category><![CDATA[NSImage]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[Snippet - 小片]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=712</guid>
		<description><![CDATA[Scroll to comments
While continuing to rebuild Slider&#8217;s background image features, I was forced to rewrite the code that scales an image up/down to Slider&#8217;s portal size, ignoring the image&#8217;s original proportions.  The image also had to be painted within a path, as Slider may have differently shaped corners compared to the image to be [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/' rel='bookmark' title='Permanent Link: Tile an NSImage Within an NSBezierPath'>Tile an NSImage Within an NSBezierPath</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/' rel='bookmark' title='Permanent Link: How to Prevent Noisy NSBitmapImageReps'>How to Prevent Noisy NSBitmapImageReps</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Permanent Link: Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
