<?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>Comentarios para Guerratopia</title>
	<atom:link href="http://guerratopia.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://guerratopia.com</link>
	<description>Nuestra recompensa se encuentra en el esfuerzo y no en el resultado</description>
	<lastBuildDate>Thu, 02 Feb 2012 10:41:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comentario en Información por MARÍA ISABEL VANOLI VANOLI</title>
		<link>http://guerratopia.com/informacion/comment-page-1#comment-1412</link>
		<dc:creator>MARÍA ISABEL VANOLI VANOLI</dc:creator>
		<pubDate>Thu, 02 Feb 2012 10:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://guerra.hiqdev.com/?page_id=38#comment-1412</guid>
		<description>Hola amigo!!! Una Abuela también quiere agradecerte tu aporte, ya que hacía casi dos meses que venía luchando con un error que me volvía loca y ya estaba pensando en formatear mi máquina, fue genial ver que todo volvía a la normalidad luego de hacer toda la maniobra que tan claramente explicas, hasta me ahorraste una platita y evitaste que se me siguieran cayendo los pelos de la rabia, debería haber más personas cómo tú en Internet, para que quienes cómo yo, que mucho no entendemos, tengamos a quién recurrir en caso de problemas cómo éste, te reitero las GRACIAS y recibe un beso de ésta Abu!!!</description>
		<content:encoded><![CDATA[<p>Hola amigo!!! Una Abuela también quiere agradecerte tu aporte, ya que hacía casi dos meses que venía luchando con un error que me volvía loca y ya estaba pensando en formatear mi máquina, fue genial ver que todo volvía a la normalidad luego de hacer toda la maniobra que tan claramente explicas, hasta me ahorraste una platita y evitaste que se me siguieran cayendo los pelos de la rabia, debería haber más personas cómo tú en Internet, para que quienes cómo yo, que mucho no entendemos, tengamos a quién recurrir en caso de problemas cómo éste, te reitero las GRACIAS y recibe un beso de ésta Abu!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en (English) Introduction to Automating UI Testing in iOS por Georgianna</title>
		<link>http://guerratopia.com/introduction-to-automating-ui-testing-in-ios/comment-page-1#comment-1404</link>
		<dc:creator>Georgianna</dc:creator>
		<pubDate>Tue, 31 Jan 2012 06:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=783#comment-1404</guid>
		<description> I was pleased with this article. Many thanks for the excellent blog post.</description>
		<content:encoded><![CDATA[<p>I was pleased with this article. Many thanks for the excellent blog post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Singleton en Objective-c por Guerrix</title>
		<link>http://guerratopia.com/singleton-en-objective-c/comment-page-1#comment-1400</link>
		<dc:creator>Guerrix</dc:creator>
		<pubDate>Mon, 30 Jan 2012 18:14:40 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=760#comment-1400</guid>
		<description>Gracias por la aportacion (Y)</description>
		<content:encoded><![CDATA[<p>Gracias por la aportacion (Y)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Como Guardar, Cargar o Borrar Imagenes de iPhone/iPad documents directory por ชิเนเต้ เบบี้เฟซ</title>
		<link>http://guerratopia.com/how-to-saveload-or-remove-images-in-iphoneipad-documents-directory/comment-page-1#comment-1397</link>
		<dc:creator>ชิเนเต้ เบบี้เฟซ</dc:creator>
		<pubDate>Sun, 29 Jan 2012 18:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=748#comment-1397</guid>
		<description>thanks,

It like we make recursion. add with the name that we want.

Thanks again for link.</description>
		<content:encoded><![CDATA[<p>thanks,</p>
<p>It like we make recursion. add with the name that we want.</p>
<p>Thanks again for link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Singleton en Objective-c por Cristopher</title>
		<link>http://guerratopia.com/singleton-en-objective-c/comment-page-1#comment-1389</link>
		<dc:creator>Cristopher</dc:creator>
		<pubDate>Sat, 28 Jan 2012 00:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=760#comment-1389</guid>
		<description>Prefiero esta implementacion:

static MySingleton *_sharedMySingleton=nil;
-(id)init{
    if (_sharedMySingleton!=nil)return self;
    if (self=[super init]) {
        NSLog(@&quot;%@&quot;,NSStringFromClass([self class]));
    }
    return self;
}

+ (MySingleton *)initialize{
    @synchronized([MySingleton class])
    {
        if(!_sharedMySingleton)
            _sharedMySingleton = [[super allocWithZone:NULL] init];
        return _sharedMySingleton;
    }
    return nil;
}

+ (id)allocWithZone:(NSZone *)zone
{
    @synchronized([MySingleton class])
    {
        return [[self initialize] retain];
	}
	return nil;
}
- (id)copyWithZone:(NSZone *)zone
{
    return self;
}
- (id)retain
{
    return self;
}
- (NSUInteger)retainCount
{
    return NSUIntegerMax; //denotes an object that cannot be released
}
- (oneway void)release
{
    //do nothing
}
- (id)autorelease
{
    return self;
}</description>
		<content:encoded><![CDATA[<p>Prefiero esta implementacion:</p>
<p>static MySingleton *_sharedMySingleton=nil;<br />
-(id)init{<br />
    if (_sharedMySingleton!=nil)return self;<br />
    if (self=[super init]) {<br />
        NSLog(@&#8221;%@&#8221;,NSStringFromClass([self class]));<br />
    }<br />
    return self;<br />
}</p>
<p>+ (MySingleton *)initialize{<br />
    @synchronized([MySingleton class])<br />
    {<br />
        if(!_sharedMySingleton)<br />
            _sharedMySingleton = [[super allocWithZone:NULL] init];<br />
        return _sharedMySingleton;<br />
    }<br />
    return nil;<br />
}</p>
<p>+ (id)allocWithZone:(NSZone *)zone<br />
{<br />
    @synchronized([MySingleton class])<br />
    {<br />
        return [[self initialize] retain];<br />
	}<br />
	return nil;<br />
}<br />
- (id)copyWithZone:(NSZone *)zone<br />
{<br />
    return self;<br />
}<br />
- (id)retain<br />
{<br />
    return self;<br />
}<br />
- (NSUInteger)retainCount<br />
{<br />
    return NSUIntegerMax; //denotes an object that cannot be released<br />
}<br />
- (oneway void)release<br />
{<br />
    //do nothing<br />
}<br />
- (id)autorelease<br />
{<br />
    return self;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Support por Guerrix</title>
		<link>http://guerratopia.com/support/comment-page-1#comment-1369</link>
		<dc:creator>Guerrix</dc:creator>
		<pubDate>Wed, 25 Jan 2012 19:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?page_id=817#comment-1369</guid>
		<description>There is a delegate method, where you can put the code once you tap on the row of tableview.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
}

Cheers</description>
		<content:encoded><![CDATA[<p>There is a delegate method, where you can put the code once you tap on the row of tableview.</p>
<p>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{<br />
}</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Support por Hi,can you please tell how to access the table view cell in the main window</title>
		<link>http://guerratopia.com/support/comment-page-1#comment-1367</link>
		<dc:creator>Hi,can you please tell how to access the table view cell in the main window</dc:creator>
		<pubDate>Wed, 25 Jan 2012 05:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?page_id=817#comment-1367</guid>
		<description>i just to want to tap on the row of tableview display.</description>
		<content:encoded><![CDATA[<p>i just to want to tap on the row of tableview display.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Como Guardar, Cargar o Borrar Imagenes de iPhone/iPad documents directory por Guerrix</title>
		<link>http://guerratopia.com/how-to-saveload-or-remove-images-in-iphoneipad-documents-directory/comment-page-1#comment-1361</link>
		<dc:creator>Guerrix</dc:creator>
		<pubDate>Mon, 23 Jan 2012 21:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=748#comment-1361</guid>
		<description>Hi there, I think this could help you http://goo.gl/Xo86R</description>
		<content:encoded><![CDATA[<p>Hi there, I think this could help you <a href="http://goo.gl/Xo86R" rel="nofollow">http://goo.gl/Xo86R</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Como Guardar, Cargar o Borrar Imagenes de iPhone/iPad documents directory por ขายกระเป๋าแฟชั่น</title>
		<link>http://guerratopia.com/how-to-saveload-or-remove-images-in-iphoneipad-documents-directory/comment-page-1#comment-1336</link>
		<dc:creator>ขายกระเป๋าแฟชั่น</dc:creator>
		<pubDate>Tue, 17 Jan 2012 10:28:24 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=748#comment-1336</guid>
		<description>Can we create folder in Documents folder?

I want to save image like folder1/image/img1.png

Thanks</description>
		<content:encoded><![CDATA[<p>Can we create folder in Documents folder?</p>
<p>I want to save image like folder1/image/img1.png</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en (English) Introduction to Automating UI Testing in iOS por Basheer P</title>
		<link>http://guerratopia.com/introduction-to-automating-ui-testing-in-ios/comment-page-1#comment-1305</link>
		<dc:creator>Basheer P</dc:creator>
		<pubDate>Wed, 11 Jan 2012 08:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://guerratopia.com/?p=783#comment-1305</guid>
		<description>Hi i am new to ios and automation. kindly attach script file and provide more tutorial and examples.
It’s a nice tutorial.</description>
		<content:encoded><![CDATA[<p>Hi i am new to ios and automation. kindly attach script file and provide more tutorial and examples.<br />
It’s a nice tutorial.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

