<?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>代码部落</title>
	<atom:link href="http://www.coderblog.in/feed" rel="self" type="application/rss+xml" />
	<link>http://www.coderblog.in</link>
	<description>－－专注于编程技术与精品软件</description>
	<lastBuildDate>Tue, 31 Jan 2012 15:28:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Titanium里使用JSS</title>
		<link>http://www.coderblog.in/2012/01/use-jss-within-titanium.html</link>
		<comments>http://www.coderblog.in/2012/01/use-jss-within-titanium.html#comments</comments>
		<pubDate>Tue, 31 Jan 2012 15:28:13 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[移动开发]]></category>
		<category><![CDATA[JSS]]></category>
		<category><![CDATA[Titanium]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1860</guid>
		<description><![CDATA[只要是做过网页的朋友，就应该知道CSS，但对于JSS，不知道了解的人又多不多呢？ 到底什么是JSS呢？一个比较完整的定义，JSS是一种新的样式语言，它在CSS标准语法的基础上增加了常量、函数、分组、封装以及Hack等特性。有助于提高前端开发效率，减少代码体积。这里我主要是说一下如何在Titanium里使用JSS，关于JSS的更多细节和用法，大家可到http://classtyle.com/jss/了解详情！ Titanium本身就支持JSS文件，使用起来也非常简单，不过必须要注意以下2点： 1.JSS文件必须要与相应的JS文件同名。请看以下例子： 如一个项目里有多个JS文件，分别是 app.js, home.js, profile.js，这时你想为 home.js 文件里的代码套用JSS，那么就必须建立一个名为 home.jss 的文件。由于Titanium同时支持多种移动设备，这时为了区分不同设备的JSS文件，可以在JSS文件名上添加设备名，如要为 iphone 应用的JSS，那么就应该写成 home.iphone.jss。 但如果你的项目比较大，JS文件很多的话，将所有JSS都放到根目录就感觉太乱了，解决办法是将对应的JSS文件放到设备目录里，titanium默认就会创建了 android 和 iphone 这2个目录，这时你只需将jss放到iphone or android目录下就可以，因为已归档了目录，所以jss文件名就不需再加上设备名了，这样管理起来也会方便很多 2.修改或者添加了JSS文件后，必须重新clean一次项目，然后重新运行才能生效。 也许Titanium是一次性将JSS都编译好了，所以如果你不做一次清除工作，无论你如何修改JSS都不会生效的，这个当时我就被忽悠了一把，这么重要的一步，官网上居然都没提及，弄得我刚开始弄了很久都没效果出来，还以为用不了 顺便一提的是，你还可以直接在JSS文件里写Titanium控件的一些样式代码，如指定一个TableViewRow控件的高度和字体等： .rowStyle{ rowHeight:20, font-size:30 } 另外其实每个控件都支持 className 这一属性，虽然很多并没有直接在API文档写出来，但一般只需直接写上就可生效了，当然你也可以用控件的id去应用其JSS，用法就和CSS一样，在此就不多说了<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="在Titanium里实现多语言" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在Titanium里实现多语言</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Workspace Cannot Be Created with Titanium Studio" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Workspace Cannot Be Created with Titanium Studio</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="PhoneGap VS Titanium" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">PhoneGap VS Titanium</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】Effective C#第二版(50种改善你代码的方法)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F06%2Feffective-c-50.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6476692.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】Effective C#第二版(50种改善你代码的方法)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="几乎可以完全替代Photoshop的免费开源软件–GIMP" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F01%2Fcan-be-replace-photoshop-gimp.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6477430.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">几乎可以完全替代Photoshop的免费开源软件–GIMP</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2012/01/use-jss-within-titanium.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在Titanium里实现多语言</title>
		<link>http://www.coderblog.in/2012/01/support-multiple-languages-with-titanium.html</link>
		<comments>http://www.coderblog.in/2012/01/support-multiple-languages-with-titanium.html#comments</comments>
		<pubDate>Tue, 17 Jan 2012 15:29:18 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[移动开发]]></category>
		<category><![CDATA[Titanium]]></category>
		<category><![CDATA[多语言]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1857</guid>
		<description><![CDATA[虽然Titanium里已有实现多语言的API可以非常方便地实现多语言国际化的功能，但其有一定的局限性，即不能在app里随时更换不同的语言，一定要直接更改整个手机里的语言设置才可生效，具体使用可以查看官方教程。 我这里介绍的方法就可以解决直接在app里随时更换语言的问题，实现起来也很简单，原来其实与官方的差不多，也是要通过读取不同的xml语言文件来显示相关语言。OK，废话少说，直接上代码吧： 123456789101112131415function L&#40;text&#41;&#123; &#160; &#160; var langFile = Ti.App.Properties.getString&#40;'lang'&#41;; &#160; &#160; var file = Ti.Filesystem.getFile&#40;Ti.Filesystem.resourcesDirectory,'languages/' + langFile + '.xml'&#41;; &#160; &#160; var xmltext = file.read&#40;&#41;.text; &#160; &#160; var xmldata = Ti.XML.parseString&#40;xmltext&#41;; &#160; &#160; var data = xmldata.documentElement.getElementsByTagName&#40;text&#41;; &#160; &#160; Ti.API.info&#40;'lang:'+ JSON.stringify&#40;data.item&#40;0&#41;.text&#41;&#41;; &#160; &#160; if&#40;data != null&#41; &#160; &#160; &#160; &#160; return data.item&#40;0&#41;.text; &#160; &#160; [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Workspace Cannot Be Created with Titanium Studio" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Workspace Cannot Be Created with Titanium Studio</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="PhoneGap VS Titanium" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">PhoneGap VS Titanium</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Titanium里使用JSS" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Titanium里使用JSS</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="PHP框架学习笔记–ThinkPHP多语言在分组下的用法！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F11%2Fthinkphp-multilingual-with-group.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">PHP框架学习笔记–ThinkPHP多语言在分组下的用法！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="多线程下使用ProgessBar" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2009%2F07%2F%25E5%25A4%259A%25E7%25BA%25BF%25E7%25A8%258B%25E4%25B8%258B%25E4%25BD%25BF%25E7%2594%25A8progessbar.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">多线程下使用ProgessBar</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2012/01/support-multiple-languages-with-titanium.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Workspace Cannot Be Created with Titanium Studio</title>
		<link>http://www.coderblog.in/2012/01/workspace-cannot-be-created-with-titanium-studio.html</link>
		<comments>http://www.coderblog.in/2012/01/workspace-cannot-be-created-with-titanium-studio.html#comments</comments>
		<pubDate>Wed, 11 Jan 2012 14:37:13 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[技巧心得]]></category>
		<category><![CDATA[移动开发]]></category>
		<category><![CDATA[Titanium]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1851</guid>
		<description><![CDATA[今天在使用Titanium的时候发现突然启动不了，总是提示一句： Workspace Cannot Be Created 然后就关闭了。 郁闷了一会，当然只能上google了（发现这些英文软件的错误，只有google才比较容易查到），经过一番查询，才找到一个解决办法，就是直接使用命令行启动: /Applications/Titanium Studio/TitaniumStudio.app/Contents/MacOS/TitaniumStudio -data “ ” 这样直接启动果然是可以了，但问题是当关闭后再次启动时，又出现了之前的问题，不可能每次都这样启动吧，那就真是郁闷了！其实出现此问题原因很简单，就是之前设置的workspace更改了物理路径，导致程序启动时找不到了，只是我一时也想不起来我曾经改过目录或者路径名啊，怎么突然就这样呢？ 于是进入属性设置里，将默认的workspace重新设置一下，这时才发现原来我之前修改过分区label名称，在MAC里文件路径是也分区名称直接相关的，这点与windows很不同，所以这个修改就导致了整个路径都改变了，才会令Titanium找不到路径了，唉～<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Titanium里使用JSS" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Titanium里使用JSS</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="PhoneGap VS Titanium" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">PhoneGap VS Titanium</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="在Titanium里实现多语言" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在Titanium里实现多语言</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="漂亮的表单创建插件–NiceForms" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F08%2F%25E6%25BC%2582%25E4%25BA%25AE%25E7%259A%2584%25E8%25A1%25A8%25E5%258D%2595%25E5%2588%259B%25E5%25BB%25BA%25E6%258F%2592%25E4%25BB%25B6-niceforms.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/12/17182318.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">漂亮的表单创建插件–NiceForms</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="使用email写博客" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F10%2Fwrite-blog-by-email.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6477896.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">使用email写博客</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2012/01/workspace-cannot-be-created-with-titanium-studio.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress 文章修订功能！</title>
		<link>http://www.coderblog.in/2012/01/wordpress-version-revision.html</link>
		<comments>http://www.coderblog.in/2012/01/wordpress-version-revision.html#comments</comments>
		<pubDate>Mon, 02 Jan 2012 13:21:15 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[技巧心得]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1848</guid>
		<description><![CDATA[今天突然发现不知道什么原因我之前的一篇日志（PhoneGap VS Titanium）突然全部变成？号这些乱码，所有内容都看不到了，非常郁闷，当时可写了不少东西啊。 原因找不到不要紧，问题是要想办法恢复才行。刚开始想看看google和百度里缓存映像里能否找到之前的内容，没想到他们更新都太快了，都已是乱码的版本了，于是想到wp里不是还支持一个文章版本控制的功能吗？抱着试试看去查看了一下之前的修订版本，哈，果然没问题，幸好WP里还留有这一手 具体使用方法非常简单，进入文章的编辑页面，然后在页面的最下方就显示之前修改的版本和日期，点击你要恢复的版本即可！ 虽然网上很多方法教人如何禁用此版本控制功能，但我觉得这些日志不管怎么说都是作者的心血啊，所以只要主机空间允许（其实也占用不了多少数据空间），还是保留此功能比较好，就像买保险一样，不怕一万，只怕万一啊，呵呵～<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="WordPress后台不能预览主题的原因!" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2009%2F11%2Fcannot-preview-the-theme-in-the-admin-screen-of-wordpress.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fwordpress-version-revision.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress后台不能预览主题的原因!</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress 3.0 升级遇到的问题！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F06%2Fthe-problem-of-upgrade-the-wordpress-3-0.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fwordpress-version-revision.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress 3.0 升级遇到的问题！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="在Godaddy的win主机安装多个wordpress网站的URL重写设置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F08%2Fmultiple-wordpress-url-rewrite-in-godaddy-windows-hosting.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fwordpress-version-revision.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在Godaddy的win主机安装多个wordpress网站的URL重写设置</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress 插件主题开发起步常用资源教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2009%2F11%2Fwordpress-%25E6%258F%2592%25E4%25BB%25B6%25E4%25B8%25BB%25E9%25A2%2598%25E5%25BC%2580%25E5%258F%2591%25E8%25B5%25B7%25E6%25AD%25A5%25E5%25B8%25B8%25E7%2594%25A8%25E8%25B5%2584%25E6%25BA%2590%25E6%2595%2599%25E7%25A8%258B.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fwordpress-version-revision.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress 插件主题开发起步常用资源教程</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="在日志文章里添加公告和提醒等样式框" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F04%2Fadd-notice-and-alter-style-into-blog.html&from=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fwordpress-version-revision.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/27/6925466.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在日志文章里添加公告和提醒等样式框</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2012/01/wordpress-version-revision.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>无随机光盘使用Boot Camp安装Win7驱动</title>
		<link>http://www.coderblog.in/2011/12/install-win7-driver-with-boot-camp-and-without-system-install-cd.html</link>
		<comments>http://www.coderblog.in/2011/12/install-win7-driver-with-boot-camp-and-without-system-install-cd.html#comments</comments>
		<pubDate>Thu, 29 Dec 2011 13:55:14 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[技巧心得]]></category>
		<category><![CDATA[boot camp]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[双系统]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1843</guid>
		<description><![CDATA[虽然感觉MAC OS越来越好用，也越来越上手了，不过由于公司项目需要（.NET），最终还是决定安装个WIN7的双系统，毕竟虚拟机上长时间跑大型软件确实会比较慢，同时也想试试新的Lion系统，因此折腾了2天时间，将所有程序软件备份后，直接将整个mac book的硬盘重新分区了 其实以前我也想过装双系统，不过当时刚开始使用MAC OS，所以也不知道如何能进行双系统的多分区，如果直接在MAC OS里使用boot camp安装，只能将整个硬盘分成2个区，一个是MAC的另一个是WIN7的，这太恶心了，我是怎么也不能接受的。呵，现在总算知道了多分区的方法，其实也非常简单，在此也顺便说说吧： 要实现双系统多分区，不要直接在MAC OS里运行boot camp进行安装，要先将各区分好，你可以先划分2个MSDOS分区供WIN7使用，其他再分多个MAC的区，安装好MAC OS后，再插入WIN7的安装光盘，然后启动时按住option键，就可以使用光盘启动了，这时安装WIN7时要注意，选择之前分出来的MSDOS分区，直接格式化一下就可以装了，此过程非常顺利～ 接下来就是WIN7驱动的问题了，按正常情况来说，其实也没什么问题，因为买MAC BOOK时有2张随机光盘，其中有一张直接插入就可在WIN7里安装boot camp，然后自动安装相关驱动了，可是对我来说这时就比较麻烦了，因为不知什么时候我的随机光盘都弄丢了，郁闷啊～ 我这次安装的是Lion系统，直接网上下载再刻录成光盘的，也才3G多吧，所以并没有包含boot camp,而经过一番google &#038; 百度后，发现网上能下载的boot camp都只是apple放出来的升级版，没有原版的话，这些升级补丁都安装不上，折腾了好长时间，正当我感觉没什么希望时，打算再次运行一下MAC OS里的boot camp看看有没什么机会，一般你自己分区后，就不能再用系统里的boot camp进行安装了，不过当我运行时，发现虽然不能安装WIN7，但居然有提示让我下载WIN7相关的驱动！ 大家可看看以下截图： 就是这里了，点击继续后，再选择下载到哪个路径，然后就会自动帮你下载最新版的boot camp，下载的是4.0版的，而且会自动适应你的机子（其实之前我也网上下载过一个600多M而且只是3.0的，但安装时确说不能在此机器上安装，晕）。下载好后是一个完整的目录，也有600多M吧，网速快的话，半小时左右就搞定了，将此目录放到WIN7里直接运行里面的EXE安装文件就可以了，这时就能自动帮你装好所有WIN7驱动了！<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Win7突然不认移动硬盘了！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F11%2Fwin7-can-not-recognize-the-usb-hd.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Finstall-win7-driver-with-boot-camp-and-without-system-install-cd.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Win7突然不认移动硬盘了！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【转】70个功能和小技巧 全面彻底搞定Win 7" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F02%2F70-technique-for-win7.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Finstall-win7-driver-with-boot-camp-and-without-system-install-cd.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【转】70个功能和小技巧 全面彻底搞定Win 7</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="遭遇Win7闪屏！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F09%2Fsplash-screen-hit-win7.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Finstall-win7-driver-with-boot-camp-and-without-system-install-cd.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">遭遇Win7闪屏！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="体验 Windows7 !" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2009%2F07%2F%25E4%25BD%2593%25E9%25AA%258C-windows7.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Finstall-win7-driver-with-boot-camp-and-without-system-install-cd.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">体验 Windows7 !</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="让你的Win7更美观！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F03%2Flet-your-win7-to-more-beatiful.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Finstall-win7-driver-with-boot-camp-and-without-system-install-cd.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6474921.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">让你的Win7更美观！</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2011/12/install-win7-driver-with-boot-camp-and-without-system-install-cd.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PhoneGap VS Titanium</title>
		<link>http://www.coderblog.in/2011/12/phonegap-vs-titanium.html</link>
		<comments>http://www.coderblog.in/2011/12/phonegap-vs-titanium.html#comments</comments>
		<pubDate>Tue, 20 Dec 2011 14:04:44 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[iOS开发]]></category>
		<category><![CDATA[移动开发]]></category>
		<category><![CDATA[phonegap]]></category>
		<category><![CDATA[Titanium]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1840</guid>
		<description><![CDATA[这次更新的时间比较长，都有半个多月没更新了 。主要还是这段时间比较忙了，连续几个project压得都没什么空余时间了～ 最近还是在做移动方面的开发，之前介绍过使用PhoneGap，这次使用的是Titanium！这2款框架都可以让你直接使用HTML+JAVASCRIPT来制作出近乎Native的web应用软件，经过一段时间的使用后，现在就说说我使用中的感受和2个框架的一些差别吧： PhoneGap是一套完全开源的框架，使用起来也挺方便，需要在各自的IDE下创建一个www目录，其好处就是你可以独立创建好www目录下的HTML代码，然后在浏览器上看到效果，不需要每次都在模拟器上看效果，而且还可以比较方便地在浏览器端上调试！ 至于缺点嘛，因为PhoneGap都是基于webview的基本上使用的，所以对于一些原生的控件应用感觉有一些局限性，或者说实现起来可能会比较麻烦，另外就是对于不同的移动设备应用，需要在相应的IDE进行开发，就是说如果你想开发一套同时支持iphone和android的应用，就需要分别在xcode和eclipse里分别写相应的代码然后再编译。 Titanium其实也是开源的，虽然其有自己的一套IDE，但生成相应的iOS项目后，其核心模块都可全部看到了，而且在著名的GitHub开源项目网站上也可以直接下载其源码。 Titanium的优点感觉还是不少的，首先其与PhoneGap最大区别就是对编译出来的代码基本上是原生代码，其并不是只基于webview控件基本上建立起来的，所以灵活性和兼容性会更好。其次是对iphone与andorid两者兼容性要好很多，基本上都使用其自身的API实现各种功能，所以可以做到写一套代码就能同时在2种设备上运行的效果！再者是其有独立的IDE，所以并不需像PhoneGap那样不断在不同的IDE里切换编译。 还有Titanium有一套比较全面的文档，这点其实很重要，更重要的是其有一个社区论坛，在使用中我遇到不少问题都是直接在他们论坛里发帖或者搜索解决了！ 同时其还有一套社区商城，就像app store一样，你可以在这里找到一些现成的模块（当然有些是要钱的）。 不过其缺点还是有的，感觉虽然原生移植能力比较强，但其使用性也要比PhoneGap复杂，首先不能直接编写好独立的HTML网页运行，一定要在其IDE里启动模拟运行才可以看到效果，调试起来也不太方便，一般都直接使用输出信息等方式查看效果（其IDE也有调试功能，但我还没怎么用过，呵呵）。另外其自定义模块方式也比较复杂，其实也相于PhoneGap的插件吧，PhoneGap这方面就做得比较简单了。 当然凡事有利必有弊，看你如何选择啦！呵，不过我个人来说，还是感觉Titaium比较好用的，特别是在做同时支持iphone &#038; android的项目时，其有独到的功能和兼容性，很方便！而且通过其IDE,可以不需要使用xcode和eclipse就能完成app的发布上机等操作，非常方便哦～ 有兴趣的朋友不防尝试一下吧，以下是2个框架的主站地址 PhoneGap: http://www.phonegap.com Titanium: http://www.appcelerator.com (这个要注册为会员后才可下载）<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Workspace Cannot Be Created with Titanium Studio" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fworkspace-cannot-be-created-with-titanium-studio.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Workspace Cannot Be Created with Titanium Studio</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="在Titanium里实现多语言" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fsupport-multiple-languages-with-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">在Titanium里实现多语言</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Titanium里使用JSS" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2012%2F01%2Fuse-jss-within-titanium.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Titanium里使用JSS</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="phonegap与iphone开发" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F10%2Fuse-phonegap-and-iphone-develop.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">phonegap与iphone开发</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="使用Sencha Touch进行ipad的左右布局" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fuse-sencha-touch-create-the-ipad-layout.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Fphonegap-vs-titanium.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/03/10263929.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">使用Sencha Touch进行ipad的左右布局</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2011/12/phonegap-vs-titanium.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>不得不介绍的一款jQuery插件&#8211;DataTables</title>
		<link>http://www.coderblog.in/2011/11/a-jquery-plugin-datatables.html</link>
		<comments>http://www.coderblog.in/2011/11/a-jquery-plugin-datatables.html#comments</comments>
		<pubDate>Wed, 30 Nov 2011 14:52:04 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[DataTables]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1837</guid>
		<description><![CDATA[近来总感觉好像不太想写博客了，所以也已有一段时间没更新了。至于原因其一是工作中也比较忙，所以回到家都不想再写了，其二是长篇的技术文章没心思写，呵，短的话又说不清楚。不过这几天发现了一个非常不错的 jQuery 插件，所以又忍不住想介绍给大家了 因为此插件功能太强了，可能很多朋友也已知道了，如果还没用过的朋友就请接着往下看吧！ 这个插件名就叫 DataTables，顾名思义，就是用来做数据展示的表格，由于其功能丰富，感觉已基本上可以代替.net本身的grid控件。以前也使用过一个jQuery的表格插件，名叫 jQGrid，也是一个功能非常强的插件，但与 DataTables比起来，感觉在使用上比较复杂，较难掌握，使用DataTables非常简单，只需最基本的一个语句即可有完整的表格控件效果！ 现在就介绍下此插件的基本使用： 首先到官网 http://datatables.net/download/ 下载最新版，下载后的压缩包里，已有非常完整的Demo、API等文档，插件的主文件就放在 media的js目录下，只需将里面的jquery.dataTables.js或者其精简版引用到你的项目中，除了JS文件的引用外，还需要将media/css目录里的demo_table.css文件和对应的images目录也放到你的项目里，这样就可以开始使用此插件了。 插件是基于 Table 标签进行的，所以必须添加一个完整的 html table 标签代码，然后直接用一句JS即可实现： 1234$&#40;document&#41;.ready&#40;function&#40;&#41; &#123;   &#160; //example 是table的id   &#160; $&#40;'#example'&#41;.dataTable&#40;&#41;; &#125; &#41;; 此插件可以实现很多不同的效果，如排序、查询、显示隐藏指定列、动态添加删除、动态修改、表尾统计、分组等等，其中让我比较喜欢的是其过滤和分组功能，可以按不同列对数据进行过滤而且还可以进行数据分组，这些如果要用服务器控件实现，可不容易，但使用DataTables就可以轻松实现。 过滤功能可到以下查看官方Demo: 1.输入框方式的过滤 2.下拉框方式的过滤 然后就是其分组功能，非常cool哦： 分组功能演示 此插件另一个让我喜欢的地方就是其文档相当地齐全，几乎所有功能都有对应的示例和代码，这样对于使用开发起到了很好的辅助，所以上手很容易！ 感兴趣的朋友不防一试吧<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="推荐效果超酷的一组jQuery插件！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F01%2Fa-set-of-jquery-plugin.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fa-jquery-plugin-datatables.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/27/6828805.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">推荐效果超酷的一组jQuery插件！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="超级酷的jQuery插件–jsTree!" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F07%2F%25E8%25B6%2585%25E7%25BA%25A7%25E9%2585%25B7%25E7%259A%2584jquery%25E6%258F%2592%25E4%25BB%25B6-jstree.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fa-jquery-plugin-datatables.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/12/17182514.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">超级酷的jQuery插件–jsTree!</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】Wiley.jQuery.For.Dummies.Jun.2010" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F12%2Fwiley-jquery-for-dummies-jun-2010.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fa-jquery-plugin-datatables.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6475064.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】Wiley.jQuery.For.Dummies.Jun.2010</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="jQuery1.2.6 的源码分析" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F07%2Fjquery1-2-6-%25E7%259A%2584%25E6%25BA%2590%25E7%25A0%2581%25E5%2588%2586%25E6%259E%2590.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fa-jquery-plugin-datatables.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">jQuery1.2.6 的源码分析</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="转：240多个jQuery插件" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F07%2F%25E8%25BD%25AC%25EF%25BC%259A240%25E5%25A4%259A%25E4%25B8%25AAjquery%25E6%258F%2592%25E4%25BB%25B6.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fa-jquery-plugin-datatables.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/11/16936457.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">转：240多个jQuery插件</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2011/11/a-jquery-plugin-datatables.html/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>【好书推荐】Xcode4 iOS Development Beginner&#8217;s Guide</title>
		<link>http://www.coderblog.in/2011/11/xcode4-ios-development-beginners-guide.html</link>
		<comments>http://www.coderblog.in/2011/11/xcode4-ios-development-beginners-guide.html#comments</comments>
		<pubDate>Mon, 14 Nov 2011 23:31:40 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[iOS开发]]></category>
		<category><![CDATA[好书推荐]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1834</guid>
		<description><![CDATA[这次向大家推荐的这本书，是专门针对Xcode4.0进行介绍的，推荐此书的原因是我发现现在很多教程（包括国外的）都是针对于 xocde3 进行讲解，在学习过程中感觉还是有些困难，因为毕竟4.0的改进比较大，整个布局界面都不同的，快捷方式也不同了，所以看着3.0的教程，总感觉摸不着头脑 此书对Xcode4介绍非常详细，通过学习本书，可让你尽快掌握4.0的技巧，知道与3.0的差异，就算再看回3.0的教程也不会有问题了。而且感觉本书特点就是全部都按一个个实例(Time for action)进行讲解，非常容易上手 以下是此书的英文简介： The iPhone is one of the hottest mobile devices on the planet. Whether you are just starting out with iOS Development or already have some knowledge in this area, you will benefit from what this book covers. Using this book’s straightforward, step-by-step approach, you will go from Xcode [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="【好书推荐】iOS SDK Programming" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F06%2Fios-sdk-programming.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fxcode4-ios-development-beginners-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/02/10732196.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】iOS SDK Programming</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】Programming Microsoft ASP.NET MVC" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F06%2F%25E3%2580%2590%25E5%25A5%25BD%25E4%25B9%25A6%25E6%258E%25A8%25E8%258D%2590%25E3%2580%2591programming-microsoft-asp-net-mvc.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fxcode4-ios-development-beginners-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/20/18135656.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】Programming Microsoft ASP.NET MVC</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】C# 4.0 in a Nutshell, 4th Edition" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F06%2F%25E3%2580%2590%25E5%25A5%25BD%25E4%25B9%25A6%25E6%258E%25A8%25E8%258D%2590%25E3%2580%2591c-4-0-in-a-nutshell-4th-edition.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fxcode4-ios-development-beginners-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/11/16994873.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】C# 4.0 in a Nutshell, 4th Edition</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】Effective C#第二版(50种改善你代码的方法)" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F06%2Feffective-c-50.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fxcode4-ios-development-beginners-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6476692.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】Effective C#第二版(50种改善你代码的方法)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】C# 4.0 How-To" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F06%2Fc-4-0-how-tohttpwww-coderblog-inp561previewtrue.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fxcode4-ios-development-beginners-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6477099.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】C# 4.0 How-To</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2011/11/xcode4-ios-development-beginners-guide.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>久违的老同学！</title>
		<link>http://www.coderblog.in/2011/11/long-lost-old-classmates.html</link>
		<comments>http://www.coderblog.in/2011/11/long-lost-old-classmates.html#comments</comments>
		<pubDate>Wed, 09 Nov 2011 13:43:59 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[心情日志]]></category>
		<category><![CDATA[初中]]></category>
		<category><![CDATA[同学]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1832</guid>
		<description><![CDATA[前2天突然收到一位初中同学的电话，说现在他们正在搞同学聚会呢！ 可惜的是他的电话来得太晚了，因为之前太久没联系，所以都找不到我电话了，居然在活动差不多结束时才试着打通了我的电话～ ，所以这次的聚会我最终还是去不成，只好等下次了 。不过也好，通过此同学的电话，让我知道了我们班的QQ群，进入群后看到很多久违了的姓名，呵呵！ 看着大家上传的聚会相片，突然发现已有很多面孔变得熟悉又陌生，很多居然连名字也叫不出了，唉～ 通过和大家群里的聊天，原来同学们几乎都有几岁大的小孩啦，多年不见，都已成家立业了，在交谈中真是感触良多啊，呵！ 嗯，现在只要有保持了联系，下次聚会就一定不会掉啦～<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="推荐几个漂亮的国外WP主题！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2009%2F11%2Fnice-theme-from-foreign.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Flong-lost-old-classmates.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6476866.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">推荐几个漂亮的国外WP主题！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="善用Google Reader!" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F01%2Fgood-for-google-reader.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Flong-lost-old-classmates.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6474952.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">善用Google Reader!</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】Pro ASP.NET MVC 3 Framework, 3rd Edition" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F08%2Fpro-asp-net-mvc-3-framework-3rd-edition.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Flong-lost-old-classmates.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/18/23428109.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】Pro ASP.NET MVC 3 Framework, 3rd Edition</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="无随机光盘使用Boot Camp安装Win7驱动" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F12%2Finstall-win7-driver-with-boot-camp-and-without-system-install-cd.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Flong-lost-old-classmates.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/29/13226082.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">无随机光盘使用Boot Camp安装Win7驱动</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="【好书推荐】Wiley.jQuery.For.Dummies.Jun.2010" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F12%2Fwiley-jquery-for-dummies-jun-2010.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Flong-lost-old-classmates.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6475064.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">【好书推荐】Wiley.jQuery.For.Dummies.Jun.2010</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2011/11/long-lost-old-classmates.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>使用Sencha Touch进行ipad的左右布局</title>
		<link>http://www.coderblog.in/2011/11/use-sencha-touch-create-the-ipad-layout.html</link>
		<comments>http://www.coderblog.in/2011/11/use-sencha-touch-create-the-ipad-layout.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 15:14:13 +0000</pubDate>
		<dc:creator>Winson</dc:creator>
				<category><![CDATA[iOS开发]]></category>
		<category><![CDATA[技巧心得]]></category>
		<category><![CDATA[移动开发]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[sencha touch]]></category>
		<category><![CDATA[布局]]></category>

		<guid isPermaLink="false">http://www.coderblog.in/?p=1827</guid>
		<description><![CDATA[最近一段时间苦学了一阵子sencha touch后，总算有些心得，难得现在有时间，就决定写下来与大家分享 这次主要想介绍一下如何使用sencha touch进行布局，而我这段时间一直在做有关ipad的项目，所以自然也首先以ipad为基础来介绍一下啦。将要介绍的是一种左右风格的简单布局，这种布局一般也是在ipad上用的比较多，由于iphone的屏幕比较小，所以也不需要再分左右栏目了。 在介绍之前，先让大家看看效果： ok,如果有兴趣的话，就请继续往下看吧 。其实使用sencha touch确实非常方便，其布局都是基于panel进行的，所以首先要创建一个rootPanel，然后再往上面添砖加瓦。在此先简单说说此项目的组成，我现在的demo都是基于phonegap项目创建的，至于如何创建phonegap，在此我也不多说了，基础的教程网上一大把，直接到官方网站看看heollo world的演示创建就一目了然了 所有基于phonegap的项目有一个很好的地方，就是你只需将所有HTML，JS代码放到其www目录下就可以了，不用关心其他文件（当然，如果你要用到一些原生代码就要用插件了），所以我们对界面的修改，只需修改www目录下的JS就OK了，而使用sench touch的话，基本上是不需要写其他HTML代码的，所以我的index.html文件里除了JS和CSS文件的引用外，就什么也没有了，一个空的body就可以了。 开始代码，我使用的是 Ext.regApplication 来创建应用，当然也可以使用 Ext.Setup 创建，但用前者的好处是可让你的应用更加强化，配置更灵活。 首先我们创建一个rootPanel： 1234567891011121314151617181920212223var CoderBlogApp = new Ext.regApplication&#40;&#123; &#160; &#160; name: &#34;CoderBlogApp&#34;, &#160; &#160; launch: function &#40;&#41; &#123; &#160; &#160; &#160; &#160; //创建rootPanel，并将其layout设置为hbox &#160; &#160; &#160; &#160; &#160;rootPanel = new Ext.Panel&#40;&#123; &#160; &#160; &#160; &#160; &#160; &#160; fullscreen: true, &#160; &#160; [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="iPod Touch4惊险刷机经历！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F05%2Fipod-touch4-firmware-upgrade.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fuse-sencha-touch-create-the-ipad-layout.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">iPod Touch4惊险刷机经历！</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="换新公司了，痛并快乐着～" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F10%2Fnew-company.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fuse-sencha-touch-create-the-ipad-layout.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">换新公司了，痛并快乐着～</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="phonegap与iphone开发" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2011%2F10%2Fuse-phonegap-and-iphone-develop.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fuse-sencha-touch-create-the-ipad-layout.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">phonegap与iphone开发</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="道地台湾游（五）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F12%2Fauthentic-tour-of-taiwan-5.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fuse-sencha-touch-create-the-ipad-layout.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6474881.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">道地台湾游（五）</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="不得不推荐的一款 Firefox 插件！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.coderblog.in%2F2010%2F12%2Frecommend-a-firefox-plugin.html&from=http%3A%2F%2Fwww.coderblog.in%2F2011%2F11%2Fuse-sencha-touch-create-the-ipad-layout.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/25/6480355.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">不得不推荐的一款 Firefox 插件！</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
		<wfw:commentRss>http://www.coderblog.in/2011/11/use-sencha-touch-create-the-ipad-layout.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

