<?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 for Mindsizzlers</title>
	<atom:link href="http://www.mindsizzlers.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mindsizzlers.com</link>
	<description>Bringing Ideas to Life</description>
	<lastBuildDate>Tue, 06 Dec 2011 19:36:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on KVO and Bindings on iPhone by Liam</title>
		<link>http://www.mindsizzlers.com/2010/04/kvo-and-bindings-on-iphone/comment-page-1/#comment-11595</link>
		<dc:creator>Liam</dc:creator>
		<pubDate>Tue, 06 Dec 2011 19:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=360#comment-11595</guid>
		<description>Really clear article, you are right about googling kvo/kvc, a lot of misleading information, but your example works perfect, just what I needed :)

thanks

liam</description>
		<content:encoded><![CDATA[<p>Really clear article, you are right about googling kvo/kvc, a lot of misleading information, but your example works perfect, just what I needed <img src='http://www.mindsizzlers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>thanks</p>
<p>liam</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Successful iOS Background Location reporting by Roger</title>
		<link>http://www.mindsizzlers.com/2011/07/ios-background-location/comment-page-1/#comment-7189</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Thu, 18 Aug 2011 17:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=632#comment-7189</guid>
		<description>Hi Mike, 

That is correct, the location services icon will remain on if you have background services enabled. It is however a mistake to think it is the &quot;gps icon&quot; - the arrow icon has nothing to do with GPS per se and simply means that location services are active.

Unfortunately a lot of users think it does mean the GPS is on and draining their battery ... and the fact that they are wrong doesn&#039;t really help us developers when using background location services!

Sadly this is the way the location services are designed by Apple. Perhaps in a future OS release they will make the icon sufficiently different for background use that the users will also pick up on this.

Until then ... all we can do is try to inform them in the application.</description>
		<content:encoded><![CDATA[<p>Hi Mike, </p>
<p>That is correct, the location services icon will remain on if you have background services enabled. It is however a mistake to think it is the &#8220;gps icon&#8221; &#8211; the arrow icon has nothing to do with GPS per se and simply means that location services are active.</p>
<p>Unfortunately a lot of users think it does mean the GPS is on and draining their battery &#8230; and the fact that they are wrong doesn&#8217;t really help us developers when using background location services!</p>
<p>Sadly this is the way the location services are designed by Apple. Perhaps in a future OS release they will make the icon sufficiently different for background use that the users will also pick up on this.</p>
<p>Until then &#8230; all we can do is try to inform them in the application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Successful iOS Background Location reporting by Mike</title>
		<link>http://www.mindsizzlers.com/2011/07/ios-background-location/comment-page-1/#comment-7188</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 18 Aug 2011 17:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=632#comment-7188</guid>
		<description>Im running significant location changes in the background however the gps icon remains on constantly even when app is background.  Is there a solution around this?</description>
		<content:encoded><![CDATA[<p>Im running significant location changes in the background however the gps icon remains on constantly even when app is background.  Is there a solution around this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Successful iOS Background Location reporting by Roger</title>
		<link>http://www.mindsizzlers.com/2011/07/ios-background-location/comment-page-1/#comment-6461</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Wed, 27 Jul 2011 16:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=632#comment-6461</guid>
		<description>Be careful of running location updates while in the background, that does eat battery power and your users probably won&#039;t thank you for it unless you are delivering a hyper useful service.

That said, try it and see - that&#039;s always the best way of testing these ideas out. I&#039;d have thought you would be fine, but I haven&#039;t looked in detail.</description>
		<content:encoded><![CDATA[<p>Be careful of running location updates while in the background, that does eat battery power and your users probably won&#8217;t thank you for it unless you are delivering a hyper useful service.</p>
<p>That said, try it and see &#8211; that&#8217;s always the best way of testing these ideas out. I&#8217;d have thought you would be fine, but I haven&#8217;t looked in detail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Successful iOS Background Location reporting by Saurabh</title>
		<link>http://www.mindsizzlers.com/2011/07/ios-background-location/comment-page-1/#comment-6446</link>
		<dc:creator>Saurabh</dc:creator>
		<pubDate>Wed, 27 Jul 2011 10:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=632#comment-6446</guid>
		<description>Excellent post Roger!!!! I am trying to do a similar thing for my own product. I have couple of queries. Is it possible to do a significant location update only when app is closed and normal GPS when app is in foreground or background ???? What i am doing is  

- (void)applicationWillTerminate:(UIApplication *)application {
	[locationManager startMonitoringSignificantLocationChanges];
}

and when the app opens i do 
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
	// initialize location manager

	if ([launchOptions objectForKey:UIApplicationLaunchOptionsLocationKey] ) {
		[locationManager startMonitoringSignificantLocationChanges];
	}
		
	else{
		  [locationManager startUpdatingLocation];
		
		
	}

    return YES;
}

Also i use UIBackgroundModes locations in plist so location updates keep working as not when app is minimized.

Any thoughts on this?</description>
		<content:encoded><![CDATA[<p>Excellent post Roger!!!! I am trying to do a similar thing for my own product. I have couple of queries. Is it possible to do a significant location update only when app is closed and normal GPS when app is in foreground or background ???? What i am doing is  </p>
<p>- (void)applicationWillTerminate:(UIApplication *)application {<br />
	[locationManager startMonitoringSignificantLocationChanges];<br />
}</p>
<p>and when the app opens i do<br />
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {<br />
	// initialize location manager</p>
<p>	if ([launchOptions objectForKey:UIApplicationLaunchOptionsLocationKey] ) {<br />
		[locationManager startMonitoringSignificantLocationChanges];<br />
	}</p>
<p>	else{<br />
		  [locationManager startUpdatingLocation];</p>
<p>	}</p>
<p>    return YES;<br />
}</p>
<p>Also i use UIBackgroundModes locations in plist so location updates keep working as not when app is minimized.</p>
<p>Any thoughts on this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Objective-C and the Properties of BOOL by Stuart</title>
		<link>http://www.mindsizzlers.com/2010/04/objective-c-and-the-properties-of-bool/comment-page-1/#comment-1322</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Wed, 10 Nov 2010 16:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=405#comment-1322</guid>
		<description>&#039;Self&#039; is used to access properties for objects through accessors; without the use of &#039;self&#039; you end up setting an instance variable rather than a property.

Because BOOL is essentially a primitive type, &#039;self&#039; isn&#039;t necessary - a BOOL is an instance variable rather
than a property.  As such, a property declaration is only necessary if access is needed from other objects.  Internally, &#039;self.myBOOL&#039; and &#039;myBOOL&#039; reduce to the same thing because the accessor for primitive types should simply be &#039;assign&#039;.

Both work as you would expect and because we are dealing with primitives, there&#039;s no difference in the outcome between these two forms.  I&#039;m not aware of any convention here amongst Objective-C programmers, so my guess is that it comes down to your own preference!</description>
		<content:encoded><![CDATA[<p>&#8216;Self&#8217; is used to access properties for objects through accessors; without the use of &#8216;self&#8217; you end up setting an instance variable rather than a property.</p>
<p>Because BOOL is essentially a primitive type, &#8216;self&#8217; isn&#8217;t necessary &#8211; a BOOL is an instance variable rather<br />
than a property.  As such, a property declaration is only necessary if access is needed from other objects.  Internally, &#8216;self.myBOOL&#8217; and &#8216;myBOOL&#8217; reduce to the same thing because the accessor for primitive types should simply be &#8216;assign&#8217;.</p>
<p>Both work as you would expect and because we are dealing with primitives, there&#8217;s no difference in the outcome between these two forms.  I&#8217;m not aware of any convention here amongst Objective-C programmers, so my guess is that it comes down to your own preference!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Objective-C and the Properties of BOOL by Zsolt</title>
		<link>http://www.mindsizzlers.com/2010/04/objective-c-and-the-properties-of-bool/comment-page-1/#comment-1320</link>
		<dc:creator>Zsolt</dc:creator>
		<pubDate>Wed, 10 Nov 2010 10:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=405#comment-1320</guid>
		<description>Thanks for the quick tutorial Stuart.
Would you consider the code below as correctly using BOOL?
Would you go through property to set the BOOL var? I need to change the variable both from within the class and from a different class.

BOOL gatheringFeaturedDataBool;
@property (readwrite, assign) BOOL gatheringFeaturedDataBool;


@synthesize gatheringFeaturedDataBool;

self.gatheringFeaturedDataBool = NO;

if (!self.gatheringFeaturedDataBool) {
		[self networkCheckAndDecide];
}

Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the quick tutorial Stuart.<br />
Would you consider the code below as correctly using BOOL?<br />
Would you go through property to set the BOOL var? I need to change the variable both from within the class and from a different class.</p>
<p>BOOL gatheringFeaturedDataBool;<br />
@property (readwrite, assign) BOOL gatheringFeaturedDataBool;</p>
<p>@synthesize gatheringFeaturedDataBool;</p>
<p>self.gatheringFeaturedDataBool = NO;</p>
<p>if (!self.gatheringFeaturedDataBool) {<br />
		[self networkCheckAndDecide];<br />
}</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How does a large plastic map win a UK innovation award? by Simon Mallett</title>
		<link>http://www.mindsizzlers.com/2010/01/how-does-a-large-plastic-map-win-a-uk-innovation-award/comment-page-1/#comment-79</link>
		<dc:creator>Simon Mallett</dc:creator>
		<pubDate>Thu, 04 Mar 2010 18:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=212#comment-79</guid>
		<description>&quot;Large Plastic Map&quot; yes, sadly I agree, seen it before, not innovative. eg. http://www.whereaboutsinc.com/giant_floor_map_kit.html 

Blue Plaques, not another blue plaque mapping program! Didn&#039;t the judges think to use Google to search for blue plaque mapping software? eg. a search for blue plaque map shows http://blue.plaquemap.com/ or http://blueplaquelondon.co.uk/ and loads more.

Geovation started with such potential, there were some great ideas submitted, some better than mine, most better and more innovative than the winners. To call this an award for innovation then award it to projects that were copies seems perverse.</description>
		<content:encoded><![CDATA[<p>&#8220;Large Plastic Map&#8221; yes, sadly I agree, seen it before, not innovative. eg. <a href="http://www.whereaboutsinc.com/giant_floor_map_kit.html" rel="nofollow">http://www.whereaboutsinc.com/giant_floor_map_kit.html</a> </p>
<p>Blue Plaques, not another blue plaque mapping program! Didn&#8217;t the judges think to use Google to search for blue plaque mapping software? eg. a search for blue plaque map shows <a href="http://blue.plaquemap.com/" rel="nofollow">http://blue.plaquemap.com/</a> or <a href="http://blueplaquelondon.co.uk/" rel="nofollow">http://blueplaquelondon.co.uk/</a> and loads more.</p>
<p>Geovation started with such potential, there were some great ideas submitted, some better than mine, most better and more innovative than the winners. To call this an award for innovation then award it to projects that were copies seems perverse.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How does a large plastic map win a UK innovation award? by Roger</title>
		<link>http://www.mindsizzlers.com/2010/01/how-does-a-large-plastic-map-win-a-uk-innovation-award/comment-page-1/#comment-32</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Tue, 26 Jan 2010 23:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=212#comment-32</guid>
		<description>I think my views on the other entrants are better explored face to face, but for me the strongest entry was easily &lt;a href=&quot;http://www.missionexplore.co.uk/&quot; rel=&quot;nofollow&quot;&gt;this one&lt;/a&gt;. It connected technology to the real world, explored local geography, had great educational impact, was scalable, well thought out and well presented. How could it lose ... well I reckoned without the force of the large plastic map ... ;-)</description>
		<content:encoded><![CDATA[<p>I think my views on the other entrants are better explored face to face, but for me the strongest entry was easily <a href="http://www.missionexplore.co.uk/" rel="nofollow">this one</a>. It connected technology to the real world, explored local geography, had great educational impact, was scalable, well thought out and well presented. How could it lose &#8230; well I reckoned without the force of the large plastic map &#8230; <img src='http://www.mindsizzlers.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How does a large plastic map win a UK innovation award? by Tobias</title>
		<link>http://www.mindsizzlers.com/2010/01/how-does-a-large-plastic-map-win-a-uk-innovation-award/comment-page-1/#comment-31</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Tue, 26 Jan 2010 22:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindsizzlers.com/?p=212#comment-31</guid>
		<description>Would be interested to hear your views on the other seven entries, and of course am interested in the project about which you write: &#039;One of the ideas was exceptional, so much so that on my voting form I only ticked one box (rather than the two I was being asked for) and wrote in the margin, “give all the money to these guys as it was by far the best idea”&#039; Like the mugs, that Bard knew a thing or two about innovation.</description>
		<content:encoded><![CDATA[<p>Would be interested to hear your views on the other seven entries, and of course am interested in the project about which you write: &#8216;One of the ideas was exceptional, so much so that on my voting form I only ticked one box (rather than the two I was being asked for) and wrote in the margin, “give all the money to these guys as it was by far the best idea”&#8217; Like the mugs, that Bard knew a thing or two about innovation.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.337 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-23 10:09:04 -->
