<?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 on: [教程]如何使用iPhone日历控件</title>
	<atom:link href="http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/</link>
	<description>这就是我，Tinyfool，郝培强！身高180，体重240，标准的中年老胖子。 有妻有女，无房无车，现居上海，程序员。</description>
	<lastBuildDate>Mon, 06 Sep 2010 02:09:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: tinyfool</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-582</link>
		<dc:creator>tinyfool</dc:creator>
		<pubDate>Fri, 09 Apr 2010 04:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-582</guid>
		<description>Is very easy, wait I update this tutorial.</description>
		<content:encoded><![CDATA[<p>Is very easy, wait I update this tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fong</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-581</link>
		<dc:creator>fong</dc:creator>
		<pubDate>Fri, 09 Apr 2010 04:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-581</guid>
		<description>Excellent manual!! However, it would be perfect if you add a table below the calendar and make the table display events for each day. :)</description>
		<content:encoded><![CDATA[<p>Excellent manual!! However, it would be perfect if you add a table below the calendar and make the table display events for each day. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tinyfool</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-378</link>
		<dc:creator>tinyfool</dc:creator>
		<pubDate>Sat, 13 Mar 2010 08:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-378</guid>
		<description>谢谢，果然是个bug，已经修正了，谢谢啊

我已经感受到了开源带来的好处了，哈哈

更新日志
http://code.google.com/p/iphonecal/source/detail?r=13</description>
		<content:encoded><![CDATA[<p>谢谢，果然是个bug，已经修正了，谢谢啊</p>
<p>我已经感受到了开源带来的好处了，哈哈</p>
<p>更新日志<br />
<a href="http://code.google.com/p/iphonecal/source/detail?r=13" rel="nofollow">http://code.google.com/p/iphonecal/source/detail?r=13</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michael</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-376</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Sat, 13 Mar 2010 02:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-376</guid>
		<description>在 getDayCountOfaMonth:(CFGregorianDate)date 里:

	case 2:
			if(date.year%4==0 &amp;&amp; date.year%100!=0)
				return 29;
			else
				return 28;

条件判断应该加上个or (year%400==0), 因为如果是2000年, 2月也应该是29天.</description>
		<content:encoded><![CDATA[<p>在 getDayCountOfaMonth:(CFGregorianDate)date 里:</p>
<p>	case 2:<br />
			if(date.year%4==0 &amp;&amp; date.year%100!=0)<br />
				return 29;<br />
			else<br />
				return 28;</p>
<p>条件判断应该加上个or (year%400==0), 因为如果是2000年, 2月也应该是29天.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tinyfool</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-375</link>
		<dc:creator>tinyfool</dc:creator>
		<pubDate>Sat, 13 Mar 2010 01:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-375</guid>
		<description>日期计算用的是Cocoa的标准库，应该不会有问题啊，你能具体说说么？</description>
		<content:encoded><![CDATA[<p>日期计算用的是Cocoa的标准库，应该不会有问题啊，你能具体说说么？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michael</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-374</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Sat, 13 Mar 2010 00:03:13 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-374</guid>
		<description>闰年的算法有问题吧, 应该加上能被400整除的.</description>
		<content:encoded><![CDATA[<p>闰年的算法有问题吧, 应该加上能被400整除的.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyberscorpio</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-373</link>
		<dc:creator>cyberscorpio</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-373</guid>
		<description>嗯。了解。

我没有做过 iPhone 的开发，短期内怕是亦不会有机会。呵呵。</description>
		<content:encoded><![CDATA[<p>嗯。了解。</p>
<p>我没有做过 iPhone 的开发，短期内怕是亦不会有机会。呵呵。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tinyfool</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-372</link>
		<dc:creator>tinyfool</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-372</guid>
		<description>最新版本的模拟器有点问题（显示任何图像都略有偏差），在真机上面的效果要好看一些，实际显示结果可以参考项目首页的截图（来自以前的模拟器截图）。

当然现在外观表现确实也是本项目的最大短板，本人设计能力有问题，程序其实也写的很匆忙，写好了一直也没有好好的重构过。我会在未来尽最大可能性提高架构和美观程度，也欢迎其他人参与。

如果你现在使用的话，因为是MIT的授权，你可以任意的修改这个代码，自行美化，用在商业项目中。愿意把修改贡献出来，欢迎，不愿意也无所谓。</description>
		<content:encoded><![CDATA[<p>最新版本的模拟器有点问题（显示任何图像都略有偏差），在真机上面的效果要好看一些，实际显示结果可以参考项目首页的截图（来自以前的模拟器截图）。</p>
<p>当然现在外观表现确实也是本项目的最大短板，本人设计能力有问题，程序其实也写的很匆忙，写好了一直也没有好好的重构过。我会在未来尽最大可能性提高架构和美观程度，也欢迎其他人参与。</p>
<p>如果你现在使用的话，因为是MIT的授权，你可以任意的修改这个代码，自行美化，用在商业项目中。愿意把修改贡献出来，欢迎，不愿意也无所谓。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyberscorpio</title>
		<link>http://tiny4.org/blog/2010/03/tutorial-how-to-use-iphone-calendar-control/comment-page-1/#comment-371</link>
		<dc:creator>cyberscorpio</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://tiny4.org/blog/?p=125#comment-371</guid>
		<description>不知道显示效果是否可以方便的定制，如果不可以，那么抒发一点浅见，我觉得：
1. 日期的阿拉伯数字可以稍大一些，且不要那么靠上，和边缘贴上的话，会感觉局促
2. 在选中的情况下，阴影最好不要把立体的边框都挡住，这样它就从立体退化成一个平面了，视觉上变化太大</description>
		<content:encoded><![CDATA[<p>不知道显示效果是否可以方便的定制，如果不可以，那么抒发一点浅见，我觉得：<br />
1. 日期的阿拉伯数字可以稍大一些，且不要那么靠上，和边缘贴上的话，会感觉局促<br />
2. 在选中的情况下，阴影最好不要把立体的边框都挡住，这样它就从立体退化成一个平面了，视觉上变化太大</p>
]]></content:encoded>
	</item>
</channel>
</rss>
