<?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>「UIKit 的鬼設計」的迴響</title>
	<atom:link href="http://zonble.net/archives/2009_03/1107.php/feed" rel="self" type="application/rss+xml" />
	<link>http://zonble.net/archives/2009_03/1107.php</link>
	<description>Fire and Forget</description>
	<lastBuildDate>Fri, 18 May 2012 14:01:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>由：Tag</title>
		<link>http://zonble.net/archives/2009_03/1107.php/comment-page-1#comment-97575</link>
		<dc:creator>Tag</dc:creator>
		<pubDate>Sun, 27 Mar 2011 07:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://zonble.net/?p=1107#comment-97575</guid>
		<description>樓上提到了Title，而我想到和使用的方法則是幫AlertView設定tag
雖然多此一舉，但或許只要規格統一，還是可以有效率的辨識AlertView</description>
		<content:encoded><![CDATA[<p>樓上提到了Title，而我想到和使用的方法則是幫AlertView設定tag<br />
雖然多此一舉，但或許只要規格統一，還是可以有效率的辨識AlertView</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：zonble</title>
		<link>http://zonble.net/archives/2009_03/1107.php/comment-page-1#comment-96631</link>
		<dc:creator>zonble</dc:creator>
		<pubDate>Tue, 28 Sep 2010 07:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://zonble.net/?p=1107#comment-96631</guid>
		<description>我覺得比對 title 是個頂爛的主意。

title 不是一個 unique 的東西，同樣的alert 提示，應該要做相同的事情，但是很有可能會拿到不一樣的 title－title 可能因為在不同語系下會有不同的翻譯，例頭的訊息也可能跟著情境不同而有所改變，不太可能拿這種東西來做判斷。</description>
		<content:encoded><![CDATA[<p>我覺得比對 title 是個頂爛的主意。</p>
<p>title 不是一個 unique 的東西，同樣的alert 提示，應該要做相同的事情，但是很有可能會拿到不一樣的 title－title 可能因為在不同語系下會有不同的翻譯，例頭的訊息也可能跟著情境不同而有所改變，不太可能拿這種東西來做判斷。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：James</title>
		<link>http://zonble.net/archives/2009_03/1107.php/comment-page-1#comment-96621</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 28 Sep 2010 03:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://zonble.net/?p=1107#comment-96621</guid>
		<description>关于视频播放这块，我也没有什么好办法，我之前那个公司，都是自己写一个播放器，不过是有点麻烦而已。</description>
		<content:encoded><![CDATA[<p>关于视频播放这块，我也没有什么好办法，我之前那个公司，都是自己写一个播放器，不过是有点麻烦而已。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：James</title>
		<link>http://zonble.net/archives/2009_03/1107.php/comment-page-1#comment-96620</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 28 Sep 2010 03:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://zonble.net/?p=1107#comment-96620</guid>
		<description>对于alertView，你可以用alertView.title来判断啊，判断某个警报的标题，然后选择不就行了？</description>
		<content:encoded><![CDATA[<p>对于alertView，你可以用alertView.title来判断啊，判断某个警报的标题，然后选择不就行了？</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：jamiec</title>
		<link>http://zonble.net/archives/2009_03/1107.php/comment-page-1#comment-93852</link>
		<dc:creator>jamiec</dc:creator>
		<pubDate>Thu, 04 Feb 2010 02:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://zonble.net/?p=1107#comment-93852</guid>
		<description>謝謝你的回應～
＂在 3.0 上面，則是會確定等到開始載入影片之後，才會開始產生播放器 UI。＂
我的解決方式是去註冊 UIWindowDidBecomeKeyNotification，
等撥放器變成 key window 後在去找裡面的物件，如此就可以找到Previous/Next event 的按鈕了。

目前還遇到一個問題，我想取代掉原本Previous/Next event 的 delegate。
我的做法是先試著找出那個事件，然後移除預設的關閉視窗的事件。
我列舉出該按鈕 UIControl 所有註冊的事件，發現找不到任何註冊的事件。
因此無法移除原本預設的 delegate (關閉視窗)，請問你之前有遇過這個問題嗎？</description>
		<content:encoded><![CDATA[<p>謝謝你的回應～<br />
＂在 3.0 上面，則是會確定等到開始載入影片之後，才會開始產生播放器 UI。＂<br />
我的解決方式是去註冊 UIWindowDidBecomeKeyNotification，<br />
等撥放器變成 key window 後在去找裡面的物件，如此就可以找到Previous/Next event 的按鈕了。</p>
<p>目前還遇到一個問題，我想取代掉原本Previous/Next event 的 delegate。<br />
我的做法是先試著找出那個事件，然後移除預設的關閉視窗的事件。<br />
我列舉出該按鈕 UIControl 所有註冊的事件，發現找不到任何註冊的事件。<br />
因此無法移除原本預設的 delegate (關閉視窗)，請問你之前有遇過這個問題嗎？</p>
]]></content:encoded>
	</item>
</channel>
</rss>

