<?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: AdMob Ad to Landscape Orientation</title>
	<atom:link href="http://johnehartzog.com/2009/04/admob-ad-to-landscape-orientation/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnehartzog.com/2009/04/admob-ad-to-landscape-orientation/</link>
	<description>Programming projects and sample code</description>
	<lastBuildDate>Sat, 24 Jul 2010 10:37:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eric</title>
		<link>http://johnehartzog.com/2009/04/admob-ad-to-landscape-orientation/comment-page-1/#comment-2607</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Mon, 26 Apr 2010 19:47:36 +0000</pubDate>
		<guid isPermaLink="false">http://johnehartzog.com/?p=163#comment-2607</guid>
		<description>Sorry, but this code worked fine for me. Not sure what the issue is without seeing your specific code.</description>
		<content:encoded><![CDATA[<p>Sorry, but this code worked fine for me. Not sure what the issue is without seeing your specific code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon giles</title>
		<link>http://johnehartzog.com/2009/04/admob-ad-to-landscape-orientation/comment-page-1/#comment-2602</link>
		<dc:creator>jon giles</dc:creator>
		<pubDate>Tue, 20 Apr 2010 02:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://johnehartzog.com/?p=163#comment-2602</guid>
		<description>when i use this code, I&#039;m not getting a response for tapping my ad... anyone know what im missing?</description>
		<content:encoded><![CDATA[<p>when i use this code, I&#8217;m not getting a response for tapping my ad&#8230; anyone know what im missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Dailey</title>
		<link>http://johnehartzog.com/2009/04/admob-ad-to-landscape-orientation/comment-page-1/#comment-1935</link>
		<dc:creator>James Dailey</dc:creator>
		<pubDate>Mon, 28 Sep 2009 12:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://johnehartzog.com/?p=163#comment-1935</guid>
		<description>Oops. Top right corner.</description>
		<content:encoded><![CDATA[<p>Oops. Top right corner.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Dailey</title>
		<link>http://johnehartzog.com/2009/04/admob-ad-to-landscape-orientation/comment-page-1/#comment-1934</link>
		<dc:creator>James Dailey</dc:creator>
		<pubDate>Mon, 28 Sep 2009 12:54:17 +0000</pubDate>
		<guid isPermaLink="false">http://johnehartzog.com/?p=163#comment-1934</guid>
		<description>Here is an alternate solution I found.  Just copy ProgrammaticAdViewController.m and .h from AdMob examples into your project then add the lines below in your appDelegate. This puts admob in top left corner and it&#039;s scaled down a tiny bit.  

UINavigationController *navigationController;
[window addSubview:[navigationController view]];

AdMobView *ad = [AdMobView requestAdWithDelegate:[[ProgrammaticAdViewController alloc] init]];

ad.frame = CGRectMake(0, 432, 320, 48); 
	[self.window addSubview:ad];
	
CGAffineTransform makeLandscape = CGAffineTransformMakeRotation(M_PI * 0.5f);

makeLandscape = CGAffineTransformTranslate(makeLandscape, -103, -144);

makeLandscape = CGAffineTransformScale(makeLandscape, 0.8f, 0.8f);

ad.transform = makeLandscape;</description>
		<content:encoded><![CDATA[<p>Here is an alternate solution I found.  Just copy ProgrammaticAdViewController.m and .h from AdMob examples into your project then add the lines below in your appDelegate. This puts admob in top left corner and it&#8217;s scaled down a tiny bit.  </p>
<p>UINavigationController *navigationController;<br />
[window addSubview:[navigationController view]];</p>
<p>AdMobView *ad = [AdMobView requestAdWithDelegate:[[ProgrammaticAdViewController alloc] init]];</p>
<p>ad.frame = CGRectMake(0, 432, 320, 48);<br />
	[self.window addSubview:ad];</p>
<p>CGAffineTransform makeLandscape = CGAffineTransformMakeRotation(M_PI * 0.5f);</p>
<p>makeLandscape = CGAffineTransformTranslate(makeLandscape, -103, -144);</p>
<p>makeLandscape = CGAffineTransformScale(makeLandscape, 0.8f, 0.8f);</p>
<p>ad.transform = makeLandscape;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
