<?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>iMedian Point</title>
	<atom:link href="http://www.imedian.net/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imedian.net/en</link>
	<description></description>
	<lastBuildDate>Sun, 11 Mar 2012 17:27:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Video for iPhone/iPad using MPMoviePlayerController</title>
		<link>http://www.imedian.net/en/2012/03/video-for-iphoneipad-using-mpmovieplayercontroller/</link>
		<comments>http://www.imedian.net/en/2012/03/video-for-iphoneipad-using-mpmovieplayercontroller/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 17:26:18 +0000</pubDate>
		<dc:creator>sergio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=548</guid>
		<description><![CDATA[First of all, we need to add the framework MediaPlayer to the project (MediaPlayer.framework) and then include the header file: #import &#60;MediaPlayer/MediaPlayer.h&#62; Suppose we saved the  MP4 file on disk. We have to provide the path in our code: NSString *path = [[NSBundle mainBundle] pathForResource:@"nombre-video-sin-ext" ofType:@"mp4"]; NSURL [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, we need to add the framework MediaPlayer to the project (MediaPlayer.framework) and then include the header file:</p>
<blockquote><p>#import &lt;MediaPlayer/MediaPlayer.h&gt;</p></blockquote>
<div>Suppose we saved the  MP4 file on disk. We have to provide the path in our code:</div>
<div>
<blockquote>
<pre>NSString *path = [[NSBundle mainBundle] pathForResource:@"nombre-video-sin-ext" ofType:@"mp4"];
NSURL *url = [NSURL fileURLWithPath:path];

MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:url];</pre>
</blockquote>
<div>Now we have to set the video size and position. It is worth noting that MPMoviePlayerController inherits from UIViewController so we set the player.view properties.</div>
<blockquote><p>player.view.frame = CGRectMake(50, 50, 698, 500);<br />
[self.view addSubview:player.view];<br />
[player prepareToPlay];</p></blockquote>
</div>
<div>Finally, if we want to manage the video we will use:</div>
<blockquote><p>[player play];<br />
[player pause];<br />
[player stop];</p></blockquote>
<div>If we want to perform an action when the video ends, we can use notifications. For example:</div>
<blockquote><p>[[NSNotificationCenter defaultCenter]<br />
addObserver:self<br />
selector:@selector(movieFinishedCallback:)<br />
name:MPMoviePlayerPlaybackDidFinishNotification<br />
object:player];</p></blockquote>
<div>y pass the object player as a parameter to the function movieFinishedCallback:</div>
<blockquote><p>- (void) movieFinishedCallback:(NSNotification*) aNotification {<br />
MPMoviePlayerController *player = [aNotification object];<br />
[[NSNotificationCenter defaultCenter]<br />
removeObserver:self<br />
name:MPMoviePlayerPlaybackDidFinishNotification<br />
object:player];<br />
[player stop];<br />
[player autorelease];<br />
}</p></blockquote>
<div>We are ready to watch videos on iPad or iPhone.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2012/03/video-for-iphoneipad-using-mpmovieplayercontroller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Irregular Verbs</title>
		<link>http://www.imedian.net/en/2012/02/learn-irregular-verbs/</link>
		<comments>http://www.imedian.net/en/2012/02/learn-irregular-verbs/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 19:47:03 +0000</pubDate>
		<dc:creator>sergio</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=542</guid>
		<description><![CDATA[This app allow you to learn the most common 120 irregular verbs used in modern english. Combining the list of verbs with the native audio recordings means you can practice your pronunciation wherever you want. Increase your vocabulary and enjoy the practicing in a simple user interface [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imedian.net/es/wp-content/uploads/2012/02/irregular-verbs.jpg"><img class="size-full wp-image-147 alignright" title="TreeNews_preview" src="http://www.imedian.net/es/wp-content/uploads/2012/02/irregular-verbs.jpg" alt="" width="354" height="304" /></a></p>
<p>This app allow you to learn the most common 120 irregular verbs used in modern english. Combining the list of verbs with the native audio recordings means you can practice your pronunciation wherever you want.</p>
<p>Increase your vocabulary and enjoy the practicing in a simple user interface specially designed for fast learning and self learning.</p>
<p>Features:</p>
<ul>
<li>120 irregular verbs</li>
<li>Meanings in German, French, Spanish and Portuguese</li>
<li>Native voices</li>
</ul>
<p>Requirements:<br />
iOS 4.0 or higher</p>
<p><a href="http://itunes.apple.com/gb/app/learn-irregular-verbs/id500373371?mt=8#"><img class="alignleft size-full wp-image-257" title="available_on_the_app_store" src="http://www.imedian.net/es/wp-content/uploads/2011/10/available_on_the_app_store.png" alt="" width="150" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2012/02/learn-irregular-verbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>English Phrasal Verbs</title>
		<link>http://www.imedian.net/en/2011/12/english-phrasal-verbs/</link>
		<comments>http://www.imedian.net/en/2011/12/english-phrasal-verbs/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 09:15:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=535</guid>
		<description><![CDATA[iPhrasal shows 100 common phrasal verbs with meanings, examples and audio recordings. iPhrasal helps learners to practice the most common phrasal verbs in English.Enjoy the practice in a simple user interface specially designed for fast learning and self learning.100 Phrasal verbsNative voicesDefinitions and examples &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imedian.net/en/wp-content/uploads/2011/12/phrasal-verbs.jpg"><img class="size-full wp-image-147 alignright" title="TreeNews_preview" src="http://www.imedian.net/en/wp-content/uploads/2011/12/phrasal-verbs.jpg" alt="" width="354" height="304" /></a>iPhrasal shows 100 common phrasal verbs with meanings, examples and audio recordings. iPhrasal helps learners to practice the most common phrasal verbs in English.Enjoy the practice in a simple user interface specially designed for fast learning and self learning.100 Phrasal verbsNative voicesDefinitions and examples</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://itunes.apple.com/es/app/iphrasal.-100-english-phrasal/id490511376?mt=8"><img class="alignleft size-full wp-image-257" title="available_on_the_app_store" src="http://www.imedian.net/en/wp-content/uploads/2011/10/available_on_the_app_store.png" alt="" width="150" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/12/english-phrasal-verbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Double tap using UIGestureRecognizer for UIWebView</title>
		<link>http://www.imedian.net/en/2011/11/double-tap-using-uigesturerecognizer-for-uiwebview/</link>
		<comments>http://www.imedian.net/en/2011/11/double-tap-using-uigesturerecognizer-for-uiwebview/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 15:32:02 +0000</pubDate>
		<dc:creator>sergio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=514</guid>
		<description><![CDATA[Today we are going to show how to catch the Tap events from a UIWebView and same for double Tap. Using an UIWebView wView, we create new object UITapGestureRecognizer tgr UIWebView  * wView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT)]; UITapGestureRecognizer *tgr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(DobleTap: )]; Now we set the [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are going to show how to catch the Tap events from a UIWebView and same for double Tap.</p>
<p>Using an UIWebView wView, we create new object UITapGestureRecognizer <strong>tgr</strong></p>
<blockquote><p><em>UIWebView</em>  * wView = [[<em>UIWebView</em> alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT)];<br />
<em>UITapGestureRecognizer</em> *<strong>tgr</strong> = [[<em>UITapGestureRecognizer</em> alloc] initWithTarget:self action:@selector(<em>DobleTap</em>: )];</p></blockquote>
<p>Now we set the number of touches/taps</p>
<blockquote><p>tgr.numberOfTapsRequired=2;</p></blockquote>
<p>Add <strong>tgr</strong> to  wView</p>
<blockquote><p>tgr.delegate = self; // Opcional<br />
[wView addGestureRecognizer: <strong>tgr</strong>];</p></blockquote>
<p>and at the end we create the  <em>DobleTap</em> function referred before</p>
<blockquote><p>-(void) <em>DobleTap</em>: (<em>UIGestureRecognizer</em> *) sender {<br />
// Sentencias<br />
}</p></blockquote>
<p>Hope help!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/11/double-tap-using-uigesturerecognizer-for-uiwebview/feed/</wfw:commentRss>
		<slash:comments>4564</slash:comments>
		</item>
		<item>
		<title>iPhone Porfolio</title>
		<link>http://www.imedian.net/en/2011/10/iphone-porfolio-2/</link>
		<comments>http://www.imedian.net/en/2011/10/iphone-porfolio-2/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 14:36:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[porfolio]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=389</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/10/iphone-porfolio-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Porfolio</title>
		<link>http://www.imedian.net/en/2011/10/iphone-porfolio/</link>
		<comments>http://www.imedian.net/en/2011/10/iphone-porfolio/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 14:35:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[porfolio]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=387</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/10/iphone-porfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chicken Basket</title>
		<link>http://www.imedian.net/en/2011/10/chicken-basket-new-mini-game/</link>
		<comments>http://www.imedian.net/en/2011/10/chicken-basket-new-mini-game/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 15:31:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=349</guid>
		<description><![CDATA[The objective of this game is to score the maximum points in 60 seconds. Move the chicken with your fingers and squeeze it to shoot the eggs. Be quick to score the maximum points because the scoreboard shows the best games around the world. Try it and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imedian.net/en/wp-content/uploads/2011/10/chicken_preview.jpg"><img class="size-full wp-image-147 alignright" title="TreeNews_preview" src="http://www.imedian.net/en/wp-content/uploads/2011/10/chicken_preview.jpg" alt="" width="350" height="413" /></a></p>
<p>The objective of this game is to score the maximum points in 60 seconds. Move the chicken with your fingers and squeeze it to shoot the eggs. Be quick to score the maximum points because the scoreboard shows the best games around the world.</p>
<p>Try it and enjoy the game wherever you are.</p>
<p>Requirements:<br />
iOS 4.0 or later.</p>
<p><a href="http://itunes.apple.com/us/app/chicken-basket/id471753757?l=es&#038;ls=1&#038;mt=8"><img class="alignleft size-full wp-image-257" title="available_on_the_app_store" src="http://www.imedian.net/en/wp-content/uploads/2011/10/available_on_the_app_store.png" alt="" width="150" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/10/chicken-basket-new-mini-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get the country name on iPhone/iPad</title>
		<link>http://www.imedian.net/en/2011/10/how-to-get-the-country-name-on-iphoneipad/</link>
		<comments>http://www.imedian.net/en/2011/10/how-to-get-the-country-name-on-iphoneipad/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 08:59:47 +0000</pubDate>
		<dc:creator>sergio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=319</guid>
		<description><![CDATA[Apple uses the ISO standard ISO-3166 for representing the country names. ISO 3166-1 defines codes for the names of countries, dependent territories, and special areas of geographical interest. For example: ISO english country names Alpha-2 Alpha-3 Numeric code ISO 3166-2  United Kingdom GB GBR 826 ISO 3166-2:GB  United States US USA 840 [...]]]></description>
			<content:encoded><![CDATA[<p>Apple uses the <a href="http://en.wikipedia.org/wiki/ISO_3166-1" rel="nofollow">ISO standard ISO-3166</a> for representing the country names. ISO 3166-1 defines codes for the names of countries, dependent territories, and special areas of geographical interest.</p>
<p>For example:</p>
<table>
<tbody>
<tr>
<td>ISO english country names</td>
<td>Alpha-2</td>
<td>Alpha-3</td>
<td>Numeric code</td>
<td>ISO 3166-2</td>
</tr>
<tr>
<td><img src="http://upload.wikimedia.org/wikipedia/en/thumb/a/ae/Flag_of_the_United_Kingdom.svg/22px-Flag_of_the_United_Kingdom.svg.png" alt="" width="22" height="11" /> United Kingdom</td>
<td><tt>GB</tt></td>
<td><tt>GBR</tt></td>
<td><tt>826</tt></td>
<td>ISO 3166-2:GB</td>
</tr>
<tr>
<td><img src="http://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/22px-Flag_of_the_United_States.svg.png" alt="" width="22" height="12" /> United States</td>
<td><tt>US</tt></td>
<td><tt>USA</tt></td>
<td><tt>840</tt></td>
<td>ISO 3166-2:US</td>
</tr>
</tbody>
</table>
<p>To get the country name on a iPhone we define a NSLocale variable and we use NSLocaleCountryCode:</p>
<p>NSLocale *locale = [NSLocale currentLocale];<br />
NSString *countryCode = [locale objectForKey: NSLocaleCountryCode];</p>
<p>If we want to get the english country name we can do the next:</p>
<p>NSString *countryName = [locale displayNameForKey: NSLocaleCountryCode value: countryCode]];</p>
<p><strong>Note</strong>: More information in  <a href="http://developer.apple.com/library/mac/#documentation/CoreFoundation/Conceptual/CFLocales/Articles/CFLocaleConcepts.html" rel="nofollow">Apple&#8217;s documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/10/how-to-get-the-country-name-on-iphoneipad/feed/</wfw:commentRss>
		<slash:comments>4174</slash:comments>
		</item>
		<item>
		<title>How to write text in an iPhone CGContextShowTextAtPoint</title>
		<link>http://www.imedian.net/en/2011/10/how-to-write-text-in-an-iphone-cgcontextshowtextatpoint/</link>
		<comments>http://www.imedian.net/en/2011/10/how-to-write-text-in-an-iphone-cgcontextshowtextatpoint/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 16:32:44 +0000</pubDate>
		<dc:creator>sergio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CGContextShowTextAtPoint]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=267</guid>
		<description><![CDATA[I&#8217;m going to show how to write a text on an iPhone using the CGContextShowTextAtPoint. First problem is that by default the text will appear inverted, so we need to tranform it. A possible solution could be: void drawText (CGContextRef myContext, char *title, int x, int y, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to show how to write a text on an iPhone using the CGContextShowTextAtPoint. First problem is that by default the text will appear inverted, so we need to tranform it. A possible solution could be:</p>
<blockquote><p>void drawText (CGContextRef myContext, char *title, int x, int y, int w, int h)<br />
{<br />
CGContextSelectFont (myContext, &#8220;Arial&#8221;, h/10, kCGEncodingMacRoman);<br />
CGContextSetRGBFillColor (myContext, 0, 0, 0, 0.99);<br />
CGContextSetTextMatrix(myContext, CGAffineTransformMake(1.0,0.0, 0.0, -1.0, 0.0, 0.0));<br />
CGContextShowTextAtPoint (myContext, x, y, title, strlen(title));<br />
}</p></blockquote>
<p>The key is on the</p>
<blockquote><p>CGAffineTransformMake(1.0,0.0, 0.0, -1.0, 0.0, 0.0)</p></blockquote>
<p>transformation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/10/how-to-write-text-in-an-iphone-cgcontextshowtextatpoint/feed/</wfw:commentRss>
		<slash:comments>4605</slash:comments>
		</item>
		<item>
		<title>Deusto catalogue publications</title>
		<link>http://www.imedian.net/en/2011/10/deusto-catalogue-publications/</link>
		<comments>http://www.imedian.net/en/2011/10/deusto-catalogue-publications/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 10:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.imedian.net/en/?p=252</guid>
		<description><![CDATA[Catálogo de publicaciones de la Universidad de Deusto 2011. Índice de contenidos. Novedades editoriales Los más vendidos Serie granate - Derecho - Cuadernos penales José María Lidón - Serie Minor - Textos legales - Ciencias Sociales ￼Serie amarilla - Economía - Ingeniería - Orkestra Serie verde - [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imedian.net/en/wp-content/uploads/2011/10/deusto_preview.jpg"><img class="size-full wp-image-147 alignright" title="TreeNews_preview" src="http://www.imedian.net/en/wp-content/uploads/2011/10/deusto_preview.jpg" alt="" width="354" height="304" /></a></p>
<p>Catálogo de publicaciones de la Universidad de Deusto 2011. </p>
<p>Índice de contenidos. </p>
<p>Novedades editoriales<br />
Los más vendidos </p>
<p>Serie granate<br />
- Derecho<br />
- Cuadernos penales José María Lidón<br />
- Serie Minor<br />
- Textos legales<br />
- Ciencias Sociales </p>
<p>￼Serie amarilla<br />
- Economía<br />
- Ingeniería<br />
- Orkestra </p>
<p>Serie verde<br />
- Filosofía<br />
- Psicología<br />
- Pedagogía<br />
- Historia<br />
- Euskal Herria<br />
- Letras<br />
- Lingüística<br />
- Arqueología<br />
- Teología<br />
- Homenajes </p>
<p>Serie azul<br />
- Ética<br />
- Cuadernos de Teología Deusto<br />
- Drogodependencias<br />
- Forum Deusto<br />
- Derechos Humanos<br />
- Cuadernos Deusto de Derechos Humanos<br />
￼- Cuadernos Monográficos del ICE<br />
- Temas de Trabajo Social<br />
- Ayuda Humanitaria y desarrollo </p>
<p>Otras Series<br />
- Documentos de Estudios de Ocio<br />
- Humanidades<br />
- Derecho y Genoma Humano<br />
- HumanitarianNet<br />
- Tuning<br />
- Migraciones Internacionales<br />
- Revistas<br />
- Otras publicaciones periódicas<br />
- Manuales didácticos<br />
- Otras publicaciones<br />
- Colección Centenario </p>
<p>Universidad de Deusto &#8211; Bilbao &#8211; Spain</p>
<p><a href="http://itunes.apple.com/br/app/deusto-catalogo-publicaciones/id467941672?mt=8#"><img class="alignleft size-full wp-image-257" title="available_on_the_app_store" src="http://www.imedian.net/en/wp-content/uploads/2011/10/available_on_the_app_store.png" alt="" width="150" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imedian.net/en/2011/10/deusto-catalogue-publications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

