<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for The Spoken Word</title>
	<atom:link href="http://mithin.in/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mithin.in</link>
	<description>I do the talking here...</description>
	<lastBuildDate>Fri, 30 Jul 2010 11:11:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Detecting taps and events on UIWebView &#8211; The right way by GammaPoint</title>
		<link>http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/#comment-5227</link>
		<dc:creator>GammaPoint</dc:creator>
		<pubDate>Fri, 30 Jul 2010 11:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=349#comment-5227</guid>
		<description>Good tutorial, Mithin. 

Very useful in recreating browser like features, go backward on a page, etc.</description>
		<content:encoded><![CDATA[<p>Good tutorial, Mithin. </p>
<p>Very useful in recreating browser like features, go backward on a page, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ in Hindi by Ram Chandra Rajwani</title>
		<link>http://mithin.in/2008/08/17/c-in-hindi/#comment-5226</link>
		<dc:creator>Ram Chandra Rajwani</dc:creator>
		<pubDate>Wed, 28 Jul 2010 09:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.wordpress.com/?p=125#comment-5226</guid>
		<description>plz send me c++ hindi notes</description>
		<content:encoded><![CDATA[<p>plz send me c++ hindi notes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ in Hindi by Prakash panwar</title>
		<link>http://mithin.in/2008/08/17/c-in-hindi/#comment-5225</link>
		<dc:creator>Prakash panwar</dc:creator>
		<pubDate>Mon, 26 Jul 2010 21:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.wordpress.com/?p=125#comment-5225</guid>
		<description>PLEASE SENT ME SOME NOTE’S OBJECT ORIENTED PROGRAMMING WITH C++ IN HINDI</description>
		<content:encoded><![CDATA[<p>PLEASE SENT ME SOME NOTE’S OBJECT ORIENTED PROGRAMMING WITH C++ IN HINDI</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting taps and events on UIWebView &#8211; The right way by Alan Moore</title>
		<link>http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/#comment-5224</link>
		<dc:creator>Alan Moore</dc:creator>
		<pubDate>Wed, 21 Jul 2010 20:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=349#comment-5224</guid>
		<description>Hi Jeff,

You&#039;re right, it was the iPad that broke it... I forgot which one it was!

Too bad I didn&#039;t get your fix sooner, but I&#039;m happy with the Gesture Recognizer solution.  I honestly don&#039;t know how to build anything to support pre 3.2 on the new XCode anyway... I get the impression Apple would just as soon you didn&#039;t!

Thanks,
Alan</description>
		<content:encoded><![CDATA[<p>Hi Jeff,</p>
<p>You&#8217;re right, it was the iPad that broke it&#8230; I forgot which one it was!</p>
<p>Too bad I didn&#8217;t get your fix sooner, but I&#8217;m happy with the Gesture Recognizer solution.  I honestly don&#8217;t know how to build anything to support pre 3.2 on the new XCode anyway&#8230; I get the impression Apple would just as soon you didn&#8217;t!</p>
<p>Thanks,<br />
Alan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting taps and events on UIWebView &#8211; The right way by Jeff Tang</title>
		<link>http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/#comment-5223</link>
		<dc:creator>Jeff Tang</dc:creator>
		<pubDate>Wed, 21 Jul 2010 18:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=349#comment-5223</guid>
		<description>Hi Alan,
My Deployment Target was set to iPhone OS 3 (Base SDK 4.0) yesterday and I just changed the Deployment Target to iPhone OS 4.0 and tested my app again on iPhone 3GS running iOS4 and it works fine. So I think either sendEvent returns too early or it&#039;s related to iPhone 4 - are you using this or iPhone 3 running iOS4?

Then I tested it (for the first time) on iPad and just like you said it didn&#039;t work - I did some debugging and after moving the code  from controller&#039;s viewDidLoad to AppDelegate&#039;s (put after     
    [window addSubview:viewController.view];
    [window makeKeyAndVisible];
) - it works on iPad too:

viewController.mWindow = (TapDetectingWindow *)[UIApplication sharedApplication].keyWindow; 
    viewController.mWindow.viewToObserve = viewController.wbvText;
    viewController.mWindow.controllerThatObserves = viewController;

But I&#039;m happy that you got it work with Gesture Recognizers. And thanks for the info - I haven&#039;t used it before but from Apple&#039;s doc it seems to be the better way. However it&#039;s only available since iOS 3.2. So if one wants to support 3.0 or 3.1.x version, the technique here should be better.

Regards, Jeff</description>
		<content:encoded><![CDATA[<p>Hi Alan,<br />
My Deployment Target was set to iPhone OS 3 (Base SDK 4.0) yesterday and I just changed the Deployment Target to iPhone OS 4.0 and tested my app again on iPhone 3GS running iOS4 and it works fine. So I think either sendEvent returns too early or it&#8217;s related to iPhone 4 &#8211; are you using this or iPhone 3 running iOS4?</p>
<p>Then I tested it (for the first time) on iPad and just like you said it didn&#8217;t work &#8211; I did some debugging and after moving the code  from controller&#8217;s viewDidLoad to AppDelegate&#8217;s (put after<br />
    [window addSubview:viewController.view];<br />
    [window makeKeyAndVisible];<br />
) &#8211; it works on iPad too:</p>
<p>viewController.mWindow = (TapDetectingWindow *)[UIApplication sharedApplication].keyWindow;<br />
    viewController.mWindow.viewToObserve = viewController.wbvText;<br />
    viewController.mWindow.controllerThatObserves = viewController;</p>
<p>But I&#8217;m happy that you got it work with Gesture Recognizers. And thanks for the info &#8211; I haven&#8217;t used it before but from Apple&#8217;s doc it seems to be the better way. However it&#8217;s only available since iOS 3.2. So if one wants to support 3.0 or 3.1.x version, the technique here should be better.</p>
<p>Regards, Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using iPhone SDK MapKit Framework &#8211; A tutorial by Faizal</title>
		<link>http://mithin.in/2009/06/22/using-iphone-sdk-mapkit-framework-a-tutorial/#comment-5222</link>
		<dc:creator>Faizal</dc:creator>
		<pubDate>Wed, 21 Jul 2010 15:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=310#comment-5222</guid>
		<description>dude, I would like to know how did ya solve the multiple annotations problem.  I have
stored the lat and long in an array as [&quot;-34.343:-34.434&quot;] format
so I split the string and locate. So if I have [&quot;-34.343:-34.434&quot;],
[&quot;-54.343:-24.434&quot;] ,[&quot;-31.343:-58.434&quot;] ,[&quot;-74.343:-14.434&quot;] .
which points to multiple locations. Now how can I locate by using
multiple annotations..Please reply to my email address.</description>
		<content:encoded><![CDATA[<p>dude, I would like to know how did ya solve the multiple annotations problem.  I have<br />
stored the lat and long in an array as ["-34.343:-34.434"] format<br />
so I split the string and locate. So if I have ["-34.343:-34.434"],<br />
["-54.343:-24.434"] ,["-31.343:-58.434"] ,["-74.343:-14.434"] .<br />
which points to multiple locations. Now how can I locate by using<br />
multiple annotations..Please reply to my email address.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting taps and events on UIWebView &#8211; The right way by Alan Moore</title>
		<link>http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/#comment-5221</link>
		<dc:creator>Alan Moore</dc:creator>
		<pubDate>Wed, 21 Jul 2010 13:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=349#comment-5221</guid>
		<description>Jeff, thanks for your helpful reply.  Unfortunately, it seems that this still doesn&#039;t work on iOS4.  I ended up using the Gesture Recognizers and that does work on iPad and iOS4 so I&#039;m happy!</description>
		<content:encoded><![CDATA[<p>Jeff, thanks for your helpful reply.  Unfortunately, it seems that this still doesn&#8217;t work on iOS4.  I ended up using the Gesture Recognizers and that does work on iPad and iOS4 so I&#8217;m happy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting taps and events on UIWebView &#8211; The right way by Jeff Tang</title>
		<link>http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/#comment-5220</link>
		<dc:creator>Jeff Tang</dc:creator>
		<pubDate>Tue, 20 Jul 2010 18:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=349#comment-5220</guid>
		<description>Thanks Mithin. It works very well.

Alan, I had the exact same question, so it can&#039;t be a stupid question:) And it&#039;s actually quite easy to break down:

1) add these after userDidTapWebView in TapDetectingWindow.h:
- (void)userTouchBegan:(id)tapPoint;
- (void)userTouchMoved:(id)tapPoint;
- (void)userTouchEnded:(id)tapPoint;

2) in sendEvent of .m, comment out
if (touch.phase != UITouchPhaseEnded)
     return;
and add these:
if (touch.phase == UITouchPhaseBegan)
		[self performSelector:@selector(forwardTouchBegan:) withObject:pointArray afterDelay:0.5];
	else if (touch.phase == UITouchPhaseMoved)
		[self performSelector:@selector(forwardTouchMoved:) withObject:pointArray afterDelay:0.5];
	else if (touch.phase == UITouchPhaseEnded)
		[self performSelector:@selector(forwardTouchEnded:) withObject:pointArray afterDelay:0.5];	

Also add these:

- (void)forwardTouchBegan:(id)touch {
    [controllerThatObserves userTouchBegan:touch];
}
- (void)forwardTouchMoved:(id)touch {
    [controllerThatObserves userTouchMoved:touch];
}
- (void)forwardTouchEnded:(id)touch {
    [controllerThatObserves userTouchEnded:touch];
}

Then implement the same way as you would do with touchesBegan, touchesMoved, touchesEnded:

- (void)userTouchBegan:(id)tapPoint;
- (void)userTouchMoved:(id)tapPoint;
- (void)userTouchEnded:(id)tapPoint;
in the viewcontroller that has webview.

I just went thru this and tested and it works just like other non-webview touches.

Jeff</description>
		<content:encoded><![CDATA[<p>Thanks Mithin. It works very well.</p>
<p>Alan, I had the exact same question, so it can&#8217;t be a stupid question:) And it&#8217;s actually quite easy to break down:</p>
<p>1) add these after userDidTapWebView in TapDetectingWindow.h:<br />
- (void)userTouchBegan:(id)tapPoint;<br />
- (void)userTouchMoved:(id)tapPoint;<br />
- (void)userTouchEnded:(id)tapPoint;</p>
<p>2) in sendEvent of .m, comment out<br />
if (touch.phase != UITouchPhaseEnded)<br />
     return;<br />
and add these:<br />
if (touch.phase == UITouchPhaseBegan)<br />
		[self performSelector:@selector(forwardTouchBegan:) withObject:pointArray afterDelay:0.5];<br />
	else if (touch.phase == UITouchPhaseMoved)<br />
		[self performSelector:@selector(forwardTouchMoved:) withObject:pointArray afterDelay:0.5];<br />
	else if (touch.phase == UITouchPhaseEnded)<br />
		[self performSelector:@selector(forwardTouchEnded:) withObject:pointArray afterDelay:0.5];	</p>
<p>Also add these:</p>
<p>- (void)forwardTouchBegan:(id)touch {<br />
    [controllerThatObserves userTouchBegan:touch];<br />
}<br />
- (void)forwardTouchMoved:(id)touch {<br />
    [controllerThatObserves userTouchMoved:touch];<br />
}<br />
- (void)forwardTouchEnded:(id)touch {<br />
    [controllerThatObserves userTouchEnded:touch];<br />
}</p>
<p>Then implement the same way as you would do with touchesBegan, touchesMoved, touchesEnded:</p>
<p>- (void)userTouchBegan:(id)tapPoint;<br />
- (void)userTouchMoved:(id)tapPoint;<br />
- (void)userTouchEnded:(id)tapPoint;<br />
in the viewcontroller that has webview.</p>
<p>I just went thru this and tested and it works just like other non-webview touches.</p>
<p>Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting taps and events on UIWebView &#8211; The right way by dkilmer</title>
		<link>http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/#comment-5219</link>
		<dc:creator>dkilmer</dc:creator>
		<pubDate>Tue, 20 Jul 2010 16:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.in/?p=349#comment-5219</guid>
		<description>For anyone who&#039;s experiencing this problem:

- Open MainWindow.xib in Interface builder
- In the attributes of the Window, make sure &quot;Visible at launch&quot; is checked.

This solved the problem for me.

Thanks for posting the article -- this approach gives me a much better feeling.</description>
		<content:encoded><![CDATA[<p>For anyone who&#8217;s experiencing this problem:</p>
<p>- Open MainWindow.xib in Interface builder<br />
- In the attributes of the Window, make sure &#8220;Visible at launch&#8221; is checked.</p>
<p>This solved the problem for me.</p>
<p>Thanks for posting the article &#8212; this approach gives me a much better feeling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jeppiar Talkies by Aravind</title>
		<link>http://mithin.in/2004/09/11/jeppiar-talkies/#comment-5218</link>
		<dc:creator>Aravind</dc:creator>
		<pubDate>Thu, 15 Jul 2010 06:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://mithin.wordpress.com/2004/09/11/jeppiar-talkies/#comment-5218</guid>
		<description>@vijay.. bro well said.. i just got into sathyabama this year even though i had got in SRM univ through merit. i didnt want to waste the money ma parents spent on ma admission. thats the only reason i did so. anyways got to wait and see whats going to happen. and something funny, people here look at me with sympathy when i tell them that am going to go to sathyabama.hehe. anyways all ma dreams of having an enjoyable college life has gone down the drain. am pretty sure that ill be ready to do any shit in ma life after 4 years coz ill be that desperate.</description>
		<content:encoded><![CDATA[<p>@vijay.. bro well said.. i just got into sathyabama this year even though i had got in SRM univ through merit. i didnt want to waste the money ma parents spent on ma admission. thats the only reason i did so. anyways got to wait and see whats going to happen. and something funny, people here look at me with sympathy when i tell them that am going to go to sathyabama.hehe. anyways all ma dreams of having an enjoyable college life has gone down the drain. am pretty sure that ill be ready to do any shit in ma life after 4 years coz ill be that desperate.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
