<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Bert McDowell</title>
	<atom:link href="http://bertmcdowell.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://bertmcdowell.com</link>
	<description>An attempted life as an independent games developer.</description>
	<lastBuildDate>Thu, 02 Sep 2010 22:09:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on iPhone YouTubePlayer by Bert</title>
		<link>http://bertmcdowell.com/?p=734&#038;cpage=1#comment-245</link>
		<dc:creator>Bert</dc:creator>
		<pubDate>Thu, 02 Sep 2010 22:09:25 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?p=734#comment-245</guid>
		<description>&lt;a href=&quot;#comment-240&quot; rel=&quot;nofollow&quot;&gt;@Konstantinos &lt;/a&gt; 
Hi,

Sorry for the delay in getting back to you, it&#039;s been a while since I&#039;ve looked at this code and not sure that it will still work. 

I&#039;ll try and put together a code sample tomorrow to test it out, I&#039;ll also upload it once I have it all working.

Cheers,
Bert</description>
		<content:encoded><![CDATA[<p><a href="#comment-240" rel="nofollow">@Konstantinos </a><br />
Hi,</p>
<p>Sorry for the delay in getting back to you, it&#8217;s been a while since I&#8217;ve looked at this code and not sure that it will still work. </p>
<p>I&#8217;ll try and put together a code sample tomorrow to test it out, I&#8217;ll also upload it once I have it all working.</p>
<p>Cheers,<br />
Bert</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone YouTubePlayer by Konstantinos</title>
		<link>http://bertmcdowell.com/?p=734&#038;cpage=1#comment-240</link>
		<dc:creator>Konstantinos</dc:creator>
		<pubDate>Mon, 30 Aug 2010 13:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?p=734#comment-240</guid>
		<description>Hello from Greece,
I would like to thank you for your great code tutorials.
I am now learning objective c and this code is very helpful.
However i have trouble putting it all together.
in the example use block above you say to put the code inside a UIViewController.
I think i have done that but nothing appears when i run it in the device.
I would be gratefull if you could email me a sample project so i can see 
how everything is connected. (mythodeia@gmail.com)
Thank you very much</description>
		<content:encoded><![CDATA[<p>Hello from Greece,<br />
I would like to thank you for your great code tutorials.<br />
I am now learning objective c and this code is very helpful.<br />
However i have trouble putting it all together.<br />
in the example use block above you say to put the code inside a UIViewController.<br />
I think i have done that but nothing appears when i run it in the device.<br />
I would be gratefull if you could email me a sample project so i can see<br />
how everything is connected. (mythodeia@gmail.com)<br />
Thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Date Range Editor by Tim K</title>
		<link>http://bertmcdowell.com/?p=826&#038;cpage=1#comment-236</link>
		<dc:creator>Tim K</dc:creator>
		<pubDate>Tue, 17 Aug 2010 08:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?p=826#comment-236</guid>
		<description>Thanks a lot for this code example!!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this code example!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Line Graph by Bert</title>
		<link>http://bertmcdowell.com/?page_id=690&#038;cpage=1#comment-230</link>
		<dc:creator>Bert</dc:creator>
		<pubDate>Thu, 15 Jul 2010 12:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=690#comment-230</guid>
		<description>Hi&lt;a href=&quot;#comment-218&quot; rel=&quot;nofollow&quot;&gt;@srinivas &lt;/a&gt; 

Sorry I&#039;ve been really busy,  I presume at the moment that you are creating two separate graphs on each with it&#039;s own View? Then placing them one on Top of the other, therefore one is covering up the other? 

Correct me if I&#039;m wrong.

What you will need to do to create a combined bar / line graph is combine parts of the line graph class with the Bar Graph code. 

The draw code should follow these simple steps:
• Render the Graph Background and Text
• Render the Graphs Bars 
• Render the Graphs lines over the bars

By doing it this way all the objects are rendered onto the same context permitting both the bar and lines to be seen.

Please find the developer documentation on rendering into the context here:
http://developer.apple.com/mac/library/documentation/GraphicsImaging/Reference/CGContext/Reference/reference.html

Sorry I can&#039;t be of much more help at the moment, if do eventually build a combined Bar / Line graph I will post it though I currently have no need for one.

Good Luck,
Bert</description>
		<content:encoded><![CDATA[<p>Hi<a href="#comment-218" rel="nofollow">@srinivas </a> </p>
<p>Sorry I&#8217;ve been really busy,  I presume at the moment that you are creating two separate graphs on each with it&#8217;s own View? Then placing them one on Top of the other, therefore one is covering up the other? </p>
<p>Correct me if I&#8217;m wrong.</p>
<p>What you will need to do to create a combined bar / line graph is combine parts of the line graph class with the Bar Graph code. </p>
<p>The draw code should follow these simple steps:<br />
• Render the Graph Background and Text<br />
• Render the Graphs Bars<br />
• Render the Graphs lines over the bars</p>
<p>By doing it this way all the objects are rendered onto the same context permitting both the bar and lines to be seen.</p>
<p>Please find the developer documentation on rendering into the context here:<br />
<a href="http://developer.apple.com/mac/library/documentation/GraphicsImaging/Reference/CGContext/Reference/reference.html" rel="nofollow">http://developer.apple.com/mac/library/documentation/GraphicsImaging/Reference/CGContext/Reference/reference.html</a></p>
<p>Sorry I can&#8217;t be of much more help at the moment, if do eventually build a combined Bar / Line graph I will post it though I currently have no need for one.</p>
<p>Good Luck,<br />
Bert</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bar Graph by srinivas</title>
		<link>http://bertmcdowell.com/?page_id=606&#038;cpage=1#comment-229</link>
		<dc:creator>srinivas</dc:creator>
		<pubDate>Thu, 15 Jul 2010 12:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=606#comment-229</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-228&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-228&quot; rel=&quot;nofollow&quot;&gt;srinivas&lt;/a&gt; :&lt;/strong&gt;
&lt;a href=&quot;#comment-222&quot; rel=&quot;nofollow&quot;&gt;@ashok &lt;/a&gt;
&lt;/blockquote&gt;
hello I have issue for merging line and bar can u help in this</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-228"><p>
<strong><a href="#comment-228" rel="nofollow">srinivas</a> :</strong><br />
<a href="#comment-222" rel="nofollow">@ashok </a>
</p></blockquote>
<p>hello I have issue for merging line and bar can u help in this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bar Graph by srinivas</title>
		<link>http://bertmcdowell.com/?page_id=606&#038;cpage=1#comment-228</link>
		<dc:creator>srinivas</dc:creator>
		<pubDate>Thu, 15 Jul 2010 12:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=606#comment-228</guid>
		<description>&lt;a href=&quot;#comment-222&quot; rel=&quot;nofollow&quot;&gt;@ashok &lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="#comment-222" rel="nofollow">@ashok </a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Line Graph by Deepan</title>
		<link>http://bertmcdowell.com/?page_id=690&#038;cpage=1#comment-227</link>
		<dc:creator>Deepan</dc:creator>
		<pubDate>Thu, 15 Jul 2010 12:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=690#comment-227</guid>
		<description>hello 
         still iam not getting the line and bar(compound graph).
once i have attached both draw rect function it will displayed only one graph line or bar.
one is hidden or overwritten.
can u help in this.</description>
		<content:encoded><![CDATA[<p>hello<br />
         still iam not getting the line and bar(compound graph).<br />
once i have attached both draw rect function it will displayed only one graph line or bar.<br />
one is hidden or overwritten.<br />
can u help in this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bar Graph by ashok</title>
		<link>http://bertmcdowell.com/?page_id=606&#038;cpage=1#comment-224</link>
		<dc:creator>ashok</dc:creator>
		<pubDate>Mon, 12 Jul 2010 20:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=606#comment-224</guid>
		<description>@Bert
Thanks for the tip. I also realized similar solution for scroll thing. But, I wonder was wondering how to make leftmost vertical grid and vertical axis static/fixed when graph is scrolled horizontally.

Thanks.

PS: Avoid my last comment wherein I pointed out the bug for single bar in bargraph. Its actually defined behavior I realized later.</description>
		<content:encoded><![CDATA[<p>@Bert<br />
Thanks for the tip. I also realized similar solution for scroll thing. But, I wonder was wondering how to make leftmost vertical grid and vertical axis static/fixed when graph is scrolled horizontally.</p>
<p>Thanks.</p>
<p>PS: Avoid my last comment wherein I pointed out the bug for single bar in bargraph. Its actually defined behavior I realized later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bar Graph by Bert</title>
		<link>http://bertmcdowell.com/?page_id=606&#038;cpage=1#comment-223</link>
		<dc:creator>Bert</dc:creator>
		<pubDate>Mon, 12 Jul 2010 12:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=606#comment-223</guid>
		<description>&lt;a href=&quot;#comment-222&quot; rel=&quot;nofollow&quot;&gt;@ashok &lt;/a&gt; 
Sorry need to fix the links, if you pull the code out off the sample project it should at least work :)

If you want a scrollable bar graph you will need to do a bit of rework, I think your best bet would be to add a scroll view as a sub view in code and then move the bar rendering into that view. Thats just off the top of my head. 

If your having trouble doing this do let me know and I&#039;ll try and throw some sample code together, though I&#039;m currently quite busy finishing off a product.

Cheers.</description>
		<content:encoded><![CDATA[<p><a href="#comment-222" rel="nofollow">@ashok </a><br />
Sorry need to fix the links, if you pull the code out off the sample project it should at least work <img src='http://bertmcdowell.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you want a scrollable bar graph you will need to do a bit of rework, I think your best bet would be to add a scroll view as a sub view in code and then move the bar rendering into that view. Thats just off the top of my head. </p>
<p>If your having trouble doing this do let me know and I&#8217;ll try and throw some sample code together, though I&#8217;m currently quite busy finishing off a product.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bar Graph by ashok</title>
		<link>http://bertmcdowell.com/?page_id=606&#038;cpage=1#comment-222</link>
		<dc:creator>ashok</dc:creator>
		<pubDate>Sun, 11 Jul 2010 09:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://bertmcdowell.com/?page_id=606#comment-222</guid>
		<description>Your code completely suits the need of my app. Thanks man!!
I added BarGraph view as the subview and did little tweaking in initialization code of bar graph and bar width implementation (at 3 places) in drawRect().

	[self.view addSubview:barGraphView];

But now I&#039;ve to implement horizontally scrollable feature when there are more bars in the graph than what screen can accommodate? I don&#039;t know how to implement scrollable feature for a view (rather subview in this case).
Actually the bar graph is the only view for this screen, so I can even add it as the main view but I would prefer it as subview of main view.
Any help?

PS: Bert, the BarGraph behavior is not correct (bug) when there is only one bar in bargraph.</description>
		<content:encoded><![CDATA[<p>Your code completely suits the need of my app. Thanks man!!<br />
I added BarGraph view as the subview and did little tweaking in initialization code of bar graph and bar width implementation (at 3 places) in drawRect().</p>
<p>	[self.view addSubview:barGraphView];</p>
<p>But now I&#8217;ve to implement horizontally scrollable feature when there are more bars in the graph than what screen can accommodate? I don&#8217;t know how to implement scrollable feature for a view (rather subview in this case).<br />
Actually the bar graph is the only view for this screen, so I can even add it as the main view but I would prefer it as subview of main view.<br />
Any help?</p>
<p>PS: Bert, the BarGraph behavior is not correct (bug) when there is only one bar in bargraph.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
