<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Working with UIGestureRecognizers</title>
	<atom:link href="/2010/10/14/working-with-uigesturerecognizers/feed/" rel="self" type="application/rss+xml" />
	<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/</link>
	<description>iPhone Programming Tutorials</description>
	<lastBuildDate>Sat, 06 Sep 2014 23:52:00 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>By: Shamlan</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9603</link>
		<dc:creator><![CDATA[Shamlan]]></dc:creator>
		<pubDate>Tue, 08 Jan 2013 17:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9603</guid>
		<description><![CDATA[That exactly what i was looking for, but how can i remove all images with just a single button ?! i was able to remove the latest one by [holderView removeFromSuperview]; but couldn&#039;t remove the older one ?!]]></description>
		<content:encoded><![CDATA[<p>That exactly what i was looking for, but how can i remove all images with just a single button ?! i was able to remove the latest one by [holderView removeFromSuperview]; but couldn&#8217;t remove the older one ?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EV</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9588</link>
		<dc:creator><![CDATA[EV]]></dc:creator>
		<pubDate>Sun, 16 Dec 2012 01:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9588</guid>
		<description><![CDATA[Hey, awesome job. If I wanted to do the same with labels instead of images, how would the code look like? I tried changing imageView to a UILabel, but no luck.]]></description>
		<content:encoded><![CDATA[<p>Hey, awesome job. If I wanted to do the same with labels instead of images, how would the code look like? I tried changing imageView to a UILabel, but no luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oliver Oppitz</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9567</link>
		<dc:creator><![CDATA[Oliver Oppitz]]></dc:creator>
		<pubDate>Wed, 21 Nov 2012 06:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9567</guid>
		<description><![CDATA[THANKS for this tutorial!! Helped me add the feature to my app in no time! Good stuff! :-))  -- Oliver]]></description>
		<content:encoded><![CDATA[<p>THANKS for this tutorial!! Helped me add the feature to my app in no time! Good stuff! :-))  &#8212; Oliver</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zohaib</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9562</link>
		<dc:creator><![CDATA[Zohaib]]></dc:creator>
		<pubDate>Mon, 19 Nov 2012 09:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9562</guid>
		<description><![CDATA[replaced this code 

-(IBAction)addPhoto:(id)sender {

 
	UIImagePickerController *controller = [[UIImagePickerController alloc] init];
	[controller setMediaTypes:[NSArray arrayWithObject:kUTTypeImage]];
	[controller setDelegate:self];
 
	UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:controller];
	[popover setDelegate:self];
	[popover presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
}

with this and it works on iphone

-(IBAction)addPhoto:(id)sender {
    UIImagePickerController * picker = [[UIImagePickerController alloc] init];
    picker.delegate = self;
    picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    [self presentModalViewController:picker animated:YES];
}]]></description>
		<content:encoded><![CDATA[<p>replaced this code </p>
<p>-(IBAction)addPhoto:(id)sender {</p>
<p>	UIImagePickerController *controller = [[UIImagePickerController alloc] init];<br />
	[controller setMediaTypes:[NSArray arrayWithObject:kUTTypeImage]];<br />
	[controller setDelegate:self];</p>
<p>	UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:controller];<br />
	[popover setDelegate:self];<br />
	[popover presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];<br />
}</p>
<p>with this and it works on iphone</p>
<p>-(IBAction)addPhoto:(id)sender {<br />
    UIImagePickerController * picker = [[UIImagePickerController alloc] init];<br />
    picker.delegate = self;<br />
    picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;<br />
    [self presentModalViewController:picker animated:YES];<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zohaib</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9561</link>
		<dc:creator><![CDATA[Zohaib]]></dc:creator>
		<pubDate>Mon, 19 Nov 2012 07:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9561</guid>
		<description><![CDATA[How can i run this code as iphone project?]]></description>
		<content:encoded><![CDATA[<p>How can i run this code as iphone project?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: durul dalkanat</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9148</link>
		<dc:creator><![CDATA[durul dalkanat]]></dc:creator>
		<pubDate>Sat, 21 Jan 2012 17:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9148</guid>
		<description><![CDATA[Hello you must insertÂ #import  andÂ Â QuartzCore frameworkÂ ]]></description>
		<content:encoded><![CDATA[<p>Hello you must insertÂ #import  andÂ Â QuartzCore frameworkÂ </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herbert</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-9098</link>
		<dc:creator><![CDATA[Herbert]]></dc:creator>
		<pubDate>Sat, 07 Jan 2012 11:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-9098</guid>
		<description><![CDATA[Great tutorial. Here is a tutorial to use both singletap gesture and doubletap gesture in one controller.Â http://www.altinkonline.nl/tutorials/xcode/gestures/tap-gesture-for-ios-apps/]]></description>
		<content:encoded><![CDATA[<p>Great tutorial. Here is a tutorial to use both singletap gesture and doubletap gesture in one controller.Â http://www.altinkonline.nl/tutorials/xcode/gestures/tap-gesture-for-ios-apps/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greenmartyr</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-8586</link>
		<dc:creator><![CDATA[Greenmartyr]]></dc:creator>
		<pubDate>Fri, 04 Nov 2011 04:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-8586</guid>
		<description><![CDATA[do we have permission to use your code in our apps? I have an app that I&#039;m building that I need this type of pinch and zoom/pan ability.Â thanks for a great tutorial and excellent code.]]></description>
		<content:encoded><![CDATA[<p>do we have permission to use your code in our apps? I have an app that I&#8217;m building that I need this type of pinch and zoom/pan ability.Â thanks for a great tutorial and excellent code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PaweÅ‚ Kata</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-8431</link>
		<dc:creator><![CDATA[PaweÅ‚ Kata]]></dc:creator>
		<pubDate>Wed, 26 Oct 2011 17:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-8431</guid>
		<description><![CDATA[If you set UIImageView.userInteractionEnabled to TRUE, you&#039;ll be able to attach gesture recognizers directly to UIImageViews and skip embedding them into UIViews ;-)

Great tutorial nonetheless, thanks! :D

P.S. Just noticed the solution a few coments below. Sorry for double posting.]]></description>
		<content:encoded><![CDATA[<p>If you set UIImageView.userInteractionEnabled to TRUE, you&#8217;ll be able to attach gesture recognizers directly to UIImageViews and skip embedding them into UIViews <img src="/wp-includes/images/smilies/icon_wink.gif" alt=";-)" class="wp-smiley" /></p>
<p>Great tutorial nonetheless, thanks! <img src="/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley" /></p>
<p>P.S. Just noticed the solution a few coments below. Sorry for double posting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rohan</title>
		<link>http://icodeblog.com/2010/10/14/working-with-uigesturerecognizers/#comment-8340</link>
		<dc:creator><![CDATA[rohan]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 14:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2489#comment-8340</guid>
		<description><![CDATA[It will be very generous if you put the code downloadable on GitHub..Also application fails to zoom when we open more than one images..However its a nice tutorial to learn..]]></description>
		<content:encoded><![CDATA[<p>It will be very generous if you put the code downloadable on GitHub..Also application fails to zoom when we open more than one images..However its a nice tutorial to learn..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
