<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Tue, 14 Feb 2012 10:49:07 GMT--><?xml-stylesheet type="text/css" href="/universal/styles/feed.css"?><rss version="2.0"><channel><title>Blog - Comments</title><link>http://www.agilitesoftware.com/blog/</link><description></description><copyright></copyright><language>en-US</language><generator>Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</generator><item><title>Peter comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Peter</author><pubDate>Tue, 13 Dec 2011 11:47:44 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16170131</guid><description><![CDATA[<p>Hi Raj. Thank you for your help.</p><p>I want to make you aware of an error in this framework (I think) in iOS 4.1:</p><p>Attempting to begin a modal transition from &lt;UINavigationController: 0x238260&gt; to &lt;ARViewController: 0x2d06c0&gt; while a transition is already in progress. Wait for viewDidAppear/viewDidDisappear to know the current transition has completed</p>]]></description></item><item><title>Raj comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Raj</author><pubDate>Fri, 09 Dec 2011 10:40:46 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16141460</guid><description><![CDATA[<p>agController is the variable I defined in my viewcontroller to control AugmentedRealityController of ARKit! A cameraController is defined in AugmentedRealityController.</p>]]></description></item><item><title>Peter comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Peter</author><pubDate>Fri, 09 Dec 2011 09:39:21 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16141336</guid><description><![CDATA[<p>It can&#39;t find self.agController.cameraController in ARViewController.m, it can&#39;t respond to dismissModalViewController.</p><p>I can&#39;t understand how I can&#39;t solve this easy problem. I have tried so much but still no luck.</p>]]></description></item><item><title>Raj comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Raj</author><pubDate>Thu, 08 Dec 2011 13:52:48 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16134887</guid><description><![CDATA[<p>It should be in your ViewController code that creates instance of AugmentedRealityController of ARKit! Following is my code:</p><p>- (void)loadView {<br/>	[self setAgController:[[AugmentedRealityController alloc] initWithViewController:self]];<br/>	<br/>	[agController setupDebugMode:NO];<br/>	[agController setScaleViewsBasedOnDistance:YES];<br/>	[agController setMinimumScaleFactor:0.5];<br/>	[agController setRotateViewsBasedOnPerspective:YES];<br/>	<br/>	....<br/>}</p><p>- (void)viewDidAppear:(BOOL)animated {<br/>	[super viewDidAppear:animated];<br/>       ......</p><p>		closeBut = [UIButton buttonWithType: UIButtonTypeCustom ];<br/>		closeBut.frame = CGRectMake(278, 10, 36, 36);<br/>		[closeBut setBackgroundImage:[UIImage imageNamed:@&quot;close.png&quot;] forState:UIControlStateNormal];<br/>		[closeBut addTarget:self action:@selector(closeAR) forControlEvents:UIControlEventTouchUpInside];<br/>		[closeBut setAlpha:0.6];<br/>		[self.agController.displayView addSubview:closeBut];<br/>}</p><p>-(void)closeAR {<br/>    [self.agController.cameraController dismissModalViewControllerAnimated:YES];<br/>	[self.navigationController popViewControllerAnimated:YES];<br/>}</p>]]></description></item><item><title>Peter comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Peter</author><pubDate>Thu, 08 Dec 2011 12:02:17 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16134579</guid><description><![CDATA[<p>Where should I put that code Raj? In closeButtonClicked or in 2 places or?</p>]]></description></item><item><title>Raj comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Raj</author><pubDate>Thu, 08 Dec 2011 10:51:03 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16134387</guid><description><![CDATA[<p>Use following code. I have fixed this on iOS 5.0. You need to explicitly dismiss cameraController of AugmentedRealityController as well.</p><p>-(void)closeAR {<br/>         [self.agController.cameraController dismissModalViewControllerAnimated:YES];<br/>	 [self.navigationController popViewControllerAnimated:YES];<br/>}</p>]]></description></item><item><title>Peter comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Peter</author><pubDate>Thu, 08 Dec 2011 10:46:16 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/16134374</guid><description><![CDATA[<p>Hi!</p><p>When I close the AR View the infoViewController stays, it doesn&#39;t dissappear.</p><p>This is my code when I close the AR View:</p><p>- (IBAction)closeARButtonClicked:(id)sender {</p><p>    <br/>    [self dismissModalViewControllerAnimated:YES];<br/>    <br/>    [[[self infoViewController] view] removeFromSuperview];<br/>    infoViewController = nil;   <br/>}</p><p><br/>and this is my viewDidUnload</p><p>- (void)viewDidUnload<br/>{<br/>    [super viewDidUnload];</p><p>    if ([self infoViewController] != nil) {<br/>        [infoViewController release];<br/>        [self setInfoViewController:nil];<br/>    }<br/>    <br/>    // e.g. self.myOutlet = nil;<br/>}</p><p><br/>Do you know why this doensn&#39;t close?</p>]]></description></item><item><title>Raj comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Raj</author><pubDate>Wed, 23 Nov 2011 21:51:09 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/15971885</guid><description><![CDATA[<p>Hi Neils, did you get chance to test this on iOS5? The camera is not getting closed. It removes the coordinate overlay view but camera remains opened and there is no way to get back to main application. It works fine on iOS 4.0!</p><p>Thanks.</p>]]></description></item><item><title>Niels Hansen comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>Niels Hansen</author><pubDate>Mon, 21 Nov 2011 00:12:40 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/15911499</guid><description><![CDATA[<p>Please check out the last build on github and let me know if you still have any issues. I removed the code that was used to create the views on the arview as stacks.</p>]]></description></item><item><title>VansFannel comments on Progress made to the Augmented Reality Toolkit. Now a static library!</title><author>VansFannel</author><pubDate>Mon, 17 Oct 2011 08:25:36 +0000</pubDate><link>http://www.agilitesoftware.com/blog/2010/1/16/progress-made-to-the-augmented-reality-toolkit-now-a-static.html#comments</link><guid isPermaLink="false">349496:3713390:comment/15366921</guid><description><![CDATA[<p>I have a problem: I always see the label with the name at the right of the place.</p><p>Is this a problem with my compass?</p>]]></description></item></channel></rss>
