<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

<channel>
	<title>Axamblis Developer Podcast</title>
	<atom:link href="http://blog.axamblis.com/?feed=podcast" rel="self" type="application/rss+xml" />
	<link>http://blog.axamblis.com</link>
	<description>The Axamblis podcast on Cocoa, Xcode and various developer topics.</description>
	<lastBuildDate>Thu, 19 Nov 2009 14:22:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<itunes:subtitle>The Axamblis podcast on Cocoa, Xcode and various developer topics.</itunes:subtitle>
	<itunes:author>Fabian Schuiki</itunes:author>
	<itunes:image href="http://www.axamblis.com/media/adp/artwork_small.jpg" />
	<image><url>http://www.axamblis.com/media/adp/artwork_small.jpg</url><title>Axamblis Developer Podcast</title><link>http://blog.axamblis.com</link></image>
	<itunes:category text="Technology" />
	<itunes:category text="Technology">
		<itunes:category text="Software How-To" />
	</itunes:category>
	<itunes:category text="Technology">
		<itunes:category text="Tech News" />
	</itunes:category>
	<itunes:keywords>axamblis, xcode, interface builder, developer, cocoa, osx</itunes:keywords>
	<itunes:explicit>no</itunes:explicit>
	<itunes:owner>
		<itunes:name>Fabian Schuiki</itunes:name>
		<itunes:email>fabianschuiki@axamblis.com</itunes:email>
	</itunes:owner>
			<item>
		<title>Episode 1: SplitView-aligned Toolbar</title>
		<link>http://blog.axamblis.com/?p=37</link>
		<comments>http://blog.axamblis.com/?p=37#comments</comments>
		<pubDate>Fri, 18 Sep 2009 17:48:57 +0000</pubDate>
		<dc:creator>Fabian Schuiki</dc:creator>
				<category><![CDATA[Axamblis Developer Podcast]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://blog.axamblis.com/?p=37</guid>
		<description><![CDATA[This is the very first episode of the Axamblis Developer Podcast. We&#8217;re looking at how to create a custom NSToolbar which aligns a subset of its items along the right side of a split view divider in the same window. This behaviour which makes the items feel like they stick to the divider can also [...]]]></description>
			<content:encoded><![CDATA[<p>This is the very first episode of the Axamblis Developer Podcast. We&#8217;re looking at how to create a custom NSToolbar which aligns a subset of its items along the right side of a split view divider in the same window. This behaviour which makes the items feel like they stick to the divider can also be found in other apps like Apple Mail or <a href="http://macrabbit.com/espresso/" target="_blank">Espresso</a> (my favourite web editor, by the way).</p>
<p><a href="http://blog.axamblis.com/wp-content/uploads/ADPE1_screenshot11.png"><img class="alignnone size-full wp-image-50" title="SplitView-aligned Toolbar" src="http://blog.axamblis.com/wp-content/uploads/ADPE1_screenshot11.png" alt="SplitView-aligned Toolbar" width="564" height="206" /></a></p>
<p>In order to get the desired bevaviour we make use of some undocumented API in the NSToolbar class, and we use method swizzling to inject some custom code into the NSToolbarFlexibleSpaceItem class.</p>
<p>The category used for swizzling methods:</p>
<ul>
<li><a href="http://blog.axamblis.com/wp-content/uploads/NSObject-MethodSwizzling.zip">NSObject-MethodSwizzling</a></li>
</ul>
<p>The project file (Xcode 3.1 and higher) as well as the .h and .m files:</p>
<ul>
<li><a href="http://blog.axamblis.com/wp-content/uploads/SplitViewAlignedToolbar-Project.zip">SplitViewAlignedToolbar Project</a></li>
<li><a href="http://blog.axamblis.com/wp-content/uploads/SplitViewAlignedToolbar-Header+Implementation.zip">SplitViewAlignedToolbar Header+Implementation</a></li>
</ul>
<p>Enjoy the show and drop me a line if you have any comments or questions or other feedback!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.axamblis.com/?feed=rss2&amp;p=37</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.axamblis.com/media/adp/ADP%20Episode%201.mov" length="94757702" type="video/quicktime" />
	<itunes:summary>&lt;p&gt;This is the very first episode of the Axamblis Developer Podcast. We’re looking at how to create a custom NSToolbar which aligns a subset of its items along the right side of a split view divider in the same window. This behaviour which makes the items feel like they stick to the divider can also be found in other apps like Apple Mail or &lt;a href=&quot;http://macrabbit.com/espresso/&quot; target=&quot;_blank&quot;&gt;Espresso&lt;/a&gt; (my favourite web editor, by the way).&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.axamblis.com/wp-content/uploads/ADPE1_screenshot11.png&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-50&quot; title=&quot;SplitView-aligned Toolbar&quot; src=&quot;http://blog.axamblis.com/wp-content/uploads/ADPE1_screenshot11.png&quot; alt=&quot;SplitView-aligned Toolbar&quot; width=&quot;564&quot; height=&quot;206&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In order to get the desired bevaviour we make use of some undocumented API in the NSToolbar class, and we use method swizzling to inject some custom code into the NSToolbarFlexibleSpaceItem class.&lt;/p&gt;
&lt;p&gt;The category used for swizzling methods:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.axamblis.com/wp-content/uploads/NSObject-MethodSwizzling.zip&quot;&gt;NSObject-MethodSwizzling&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The project file (Xcode 3.1 and higher) as well as the .h and .m files:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.axamblis.com/wp-content/uploads/SplitViewAlignedToolbar-Project.zip&quot;&gt;SplitViewAlignedToolbar Project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.axamblis.com/wp-content/uploads/SplitViewAlignedToolbar-Header+Implementation.zip&quot;&gt;SplitViewAlignedToolbar Header+Implementation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Enjoy the show and drop me a line if you have any comments or questions or other feedback!&lt;/p&gt;
</itunes:summary>
<itunes:subtitle>This is the very first episode of the Axamblis Developer Podcast. We’re looking at how to create a custom NSToolbar which aligns a subset of its items along the right side of a split view divider in the same window. This behaviour which makes the [...]</itunes:subtitle>
	</item>
	</channel>
</rss>
