<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Engineering The World</title>
	<atom:link href="http://engineeringtheworld.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://engineeringtheworld.wordpress.com</link>
	<description>Engineering, programming and some more</description>
	<lastBuildDate>Fri, 14 Oct 2011 08:21:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='engineeringtheworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Engineering The World</title>
		<link>http://engineeringtheworld.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://engineeringtheworld.wordpress.com/osd.xml" title="Engineering The World" />
	<atom:link rel='hub' href='http://engineeringtheworld.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Detecting when clear is clicked in UISearchBar (X button)</title>
		<link>http://engineeringtheworld.wordpress.com/2011/04/11/detecting-when-clear-is-clicked-in-uisearchbar-x-button/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/04/11/detecting-when-clear-is-clicked-in-uisearchbar-x-button/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 14:21:06 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C 2.0]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=537</guid>
		<description><![CDATA[When conforming to UISearchBar delegate we do not get a notification when user clicks the clear text button in the UISearchBar. However, UISearchBar has a subview of type UITextField, and if we conform to UITextFieldDelegate we do get a call when clear text button is clicked in form of: The problem is that when we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=537&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When conforming to UISearchBar delegate we do not get a notification when user clicks the clear text button in the UISearchBar. However, UISearchBar has a subview of type UITextField, and if we conform to UITextFieldDelegate we do get a call when clear text button is clicked in form of:</p>
<pre class="brush: objc;">- (BOOL)textFieldShouldClear:(UITextField *)textField</pre>
<p>The problem is that when we conform to UISearchBar protocol, we do not conform to the underlying UITextField&#8217;s delegate. What we have to do is set the delegate ourselfs in for example <code>viewDidLoad</code> method. (if you do not have an outlet to the UISearchBar create it, and call it searchBar).</p>
<p>In your header (.h) file do not forget to conform to  delegates.<br />
<code><strong>&lt;UISearchBarDelegate, UITextFieldDelegate&gt;</strong></code></p>
<pre class="brush: objc;">
- (void)viewDidLoad {
  //find the UITextField view within searchBar (outlet to UISearchBar)
  //and assign self as delegate
  for (UIView *view in searchBar.subviews){
    if ([view isKindOfClass: [UITextField class]]) {
      UITextField *tf = (UITextField *)view;
      tf.delegate = self;
      break;
    }
  }
}

- (void)searchBarCancelButtonClicked:(UISearchBar *) aSearchBar {
	[aSearchBar resignFirstResponder];
}

- (BOOL)textFieldShouldClear:(UITextField *)textField {
    //if we only try and resignFirstResponder on textField or searchBar,
    //the keyboard will not dissapear (at least not on iPad)!
    [self performSelector:@selector(searchBarCancelButtonClicked:) withObject:self.searchBar afterDelay: 0.1];
    return YES;
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/537/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=537&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/04/11/detecting-when-clear-is-clicked-in-uisearchbar-x-button/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>
	</item>
		<item>
		<title>How to create iPhone delete (red) button &#8211; iOS, iPhone, iPad</title>
		<link>http://engineeringtheworld.wordpress.com/2011/03/04/how-to-create-iphone-delete-red-button-ios-iphone-ipad/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/03/04/how-to-create-iphone-delete-red-button-ios-iphone-ipad/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 16:29:42 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C 2.0]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=532</guid>
		<description><![CDATA[Here is a good blog post about how to create a red iPhone delete button with iOS SDK. http://blog.mikeweller.com/2010/04/iphone-delete-button-image.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=532&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a good blog post about how to create a red iPhone delete button with iOS SDK.</p>
<p><a href="http://blog.mikeweller.com/2010/04/iphone-delete-button-image.html">http://blog.mikeweller.com/2010/04/iphone-delete-button-image.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/532/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=532&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/03/04/how-to-create-iphone-delete-red-button-ios-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>
	</item>
		<item>
		<title>How to remove borders or separators between cells in UITableView &#8211; iOS, iPhone, iPad</title>
		<link>http://engineeringtheworld.wordpress.com/2011/02/22/how-to-remove-borders-or-separators-between-cells-in-uitableview-ios-iphone-ipad/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/02/22/how-to-remove-borders-or-separators-between-cells-in-uitableview-ios-iphone-ipad/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 09:13:16 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C 2.0]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=527</guid>
		<description><![CDATA[When you add a UITableView to your iOS application, there is always a light gray one pixel separator between each cell or row in UITableView. You can remove this border by setting UITableView&#8217;s separatorStyle property to UITableViewCellSeparatorStyleNone and viola, there is no more separators between cells in UITableView. One thing to note here is that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=527&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you add a UITableView to your iOS application, there is always a light gray one pixel separator between each cell or row in UITableView. </p>
<p>You can remove this border by setting UITableView&#8217;s <strong>separatorStyle</strong> property to <strong>UITableViewCellSeparatorStyleNone</strong> and viola, there is no more separators between cells in UITableView.</p>
<pre class="brush: objc;">
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
</pre>
<p>One thing to note here is that you can do this only for the whole UITableView and not for each individual cell for example inside cellForRowAtIndexPath delegate method.</p>
<p>separatorStyle of UITableView has 3 options:<br />
UITableViewCellSeparatorStyleNone<br />
UITableViewCellSeparatorStyleSingleLine  &#8212; Default<br />
UITableViewCellSeparatorStyleSingleLineEtched</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/527/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/527/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/527/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/527/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/527/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/527/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/527/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/527/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=527&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/02/22/how-to-remove-borders-or-separators-between-cells-in-uitableview-ios-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>
	</item>
		<item>
		<title>How to insert BOOL (boolean) value into ManagedObject in Core Data &#8211; iOS, iPad, iPhone</title>
		<link>http://engineeringtheworld.wordpress.com/2011/02/08/how-to-insert-bool-boolean-value-into-managedobject-in-core-data-ios-ipad-iphone/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/02/08/how-to-insert-bool-boolean-value-into-managedobject-in-core-data-ios-ipad-iphone/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 17:31:44 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C 2.0]]></category>
		<category><![CDATA[core data]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[store bool in core data]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=522</guid>
		<description><![CDATA[If you want to insert BOOL type into core data, you can do it with NSNumber&#8217;s member method +numberWithBool: If you want to retrieve a BOOL from NSNumber you can use -boolValue.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=522&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to insert BOOL type into core data, you can do it with NSNumber&#8217;s member method +numberWithBool:</p>
<pre class="brush: objc;">
BOOL myBool = YES;
NSNumber *boolAsNumber = [NSNumber numberWithBool:myBool];
//now you can pass boolAsNumber into you managed object for storage!
</pre>
<p>If you want to retrieve a BOOL from NSNumber you can use -boolValue.</p>
<pre class="brush: objc;">
NSNumber *boolAsNumber = [NSNumber numberWithBool:NO];

BOOL getBool = [boolAsNumber boolValue];
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/522/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=522&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/02/08/how-to-insert-bool-boolean-value-into-managedobject-in-core-data-ios-ipad-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>
	</item>
		<item>
		<title>How to remove all views inside another view &#8211; iOS, iPhone, iPad</title>
		<link>http://engineeringtheworld.wordpress.com/2011/02/08/how-to-remove-all-views-inside-another-view-ios-iphone-ipad/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/02/08/how-to-remove-all-views-inside-another-view-ios-iphone-ipad/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 09:53:35 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C 2.0]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[remove subviews]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=514</guid>
		<description><![CDATA[Let&#8217;s say we have a UIScrollView (myScrollView) in our application view. Inside UIScrollView we have couple of different subclasses of UIView (UILabel, UISegmentedControl, UIButton), like shown on the picture below. Every subclass of UIView has a method subviews, which returns NSArray of all the views that are nested inside the view. Since UIScrollView is the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=514&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say we have a UIScrollView (myScrollView) in our application view. Inside UIScrollView we have couple of different subclasses of UIView (UILabel, UISegmentedControl, UIButton), like shown on the picture below.</p>
<p align="center"><a href="http://engineeringtheworld.files.wordpress.com/2011/02/untitled-1.jpg"><img src="http://engineeringtheworld.files.wordpress.com/2011/02/untitled-1.jpg?w=343&#038;h=502" alt="" title="SubViews" width="343" height="502" class="aligncenter size-full wp-image-515" /></a></p>
<p>Every subclass of UIView has a method subviews, which returns NSArray of all the views that are nested inside the view. Since UIScrollView is the subclass of UIView, we can do the following, for example inside viewDidLoad:</p>
<pre class="brush: objc;">
- (void)viewDidLoad {
    [super viewDidLoad];
	UISeg
	for (UIView *aView in [myScrollView subviews]){
		NSLog(@&quot;Class: %@&quot;, [aView class]);
	}
}
//Returnes
//Class: UISegmentedControl
//Class: UILabel
//Class: UILabel
//Class: UILabel
//Class: UIRoundedRectButton
//Class: UITextField
//Class: UIImageView
//Class: UIImageView
</pre>
<p>Now if we wanted to delete all the subviews inside UIScrollView we would do
<pre class="brush: objc;">[aView removeFromSuperview];</pre>
<p> and thus our UIScrollView would now be empty.</p>
<p>If we wanted to remove just UILabels from our UIScrollView we would do:</p>
<pre class="brush: objc;">
if ([aView isKindOfClass:[UILabel class]]){
			[aView removeFromSuperview];
		}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/514/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/514/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/514/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=514&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/02/08/how-to-remove-all-views-inside-another-view-ios-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2011/02/untitled-1.jpg" medium="image">
			<media:title type="html">SubViews</media:title>
		</media:content>
	</item>
		<item>
		<title>How to trim NSString in Objective C 2.0 &#8211; iOS, iPad, iPhone</title>
		<link>http://engineeringtheworld.wordpress.com/2011/02/07/how-to-trim-nsstring-in-objective-c-2-0-ios-ipad-iphone/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/02/07/how-to-trim-nsstring-in-objective-c-2-0-ios-ipad-iphone/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 13:35:15 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C 2.0]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[NSString]]></category>
		<category><![CDATA[trim]]></category>
		<category><![CDATA[trim NSString]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=508</guid>
		<description><![CDATA[When you want to trim a NSString in Objective C you can use NSString&#8217;s method stringByTrimmingCharactersInSet and passing it a [NSCharacterSet whitespaceAndNewlineCharacterSet] characterSet. This will trim your NSString from all newline and whitespace characters. You can also trim just whitespace by passing [NSCharacterSet whitespaceCharacterSet] or trim just newline characters by passing [NSCharacterSet newlineCharacterSet]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=508&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you want to trim a NSString in Objective C you can use NSString&#8217;s method <strong>stringByTrimmingCharactersInSet</strong> and passing it a <strong>[NSCharacterSet whitespaceAndNewlineCharacterSet]</strong> characterSet. This will trim your NSString from all newline and whitespace characters.</p>
<pre class="brush: objc;">
NSString *trimMe = @&quot;    Trim this string      &quot;;
trimMe = [trimMe stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
NSLog(@&quot;Trimmed String: ++%@++&quot;, trimMe);
//returnes Trimmed String: ++Trim this string+++
</pre>
<p>You can also trim just whitespace by passing <strong>[NSCharacterSet whitespaceCharacterSet]</strong> or trim just newline characters by passing <strong>[NSCharacterSet newlineCharacterSet]</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/508/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/508/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/508/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/508/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/508/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/508/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/508/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/508/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=508&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/02/07/how-to-trim-nsstring-in-objective-c-2-0-ios-ipad-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>
	</item>
		<item>
		<title>Graduation, iOS SDK&#8230;</title>
		<link>http://engineeringtheworld.wordpress.com/2011/01/21/graduation-ios-sdk/</link>
		<comments>http://engineeringtheworld.wordpress.com/2011/01/21/graduation-ios-sdk/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 16:07:56 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ontime scheduling program]]></category>
		<category><![CDATA[ontime5d]]></category>
		<category><![CDATA[SketchUp Ruby API]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=504</guid>
		<description><![CDATA[It has been a while since I last posted anything on this blog, and I really should try and post at least once a week. Will try to do so in weeks to come. Since the last time I wrote anything I graduated from University of Ljubljana Slovenia in civil/structural engineering. My final thesis was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=504&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I last posted anything on this blog, and I really should try and post at least once a week. Will try to do so in weeks to come. Since the last time I wrote anything I graduated from University of Ljubljana Slovenia in civil/structural engineering. My final thesis was called: <em>Development of a software tool for creating integrated models in Sketchup.</em>. I defended it on June 29th in Ljubljana, and received a top grade for it. Basically the thesis was written about two software programs I made and shared on this blog. One is OnTime scheduling tool made with Adobe Flex 3.0 Framework and second is OnTime5D, a plugin for Google Sketchup for creating 5D animations of building process inside Sketchup according to a selected building schedule. I would love to enhance both of this programs in the future, so if anyone out here is interested in  doing something in this way please drop me a line!</p>
<p>Secondly I would like to share some words on iOS development. I started developing applications for the iPhone and iPad almost a year ago. It was the first time I used any traditional programming language where you actually have to take care of the memory yourself. But I have to say that I like iOS SDK a lot, and was quickly able to build some very interesting applications. The most recent one will soon be sent to Apple for their approval, and hopefully it will be on the App store in about 1 month.</p>
<p>Hopefully see ya in a week <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/504/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=504&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2011/01/21/graduation-ios-sdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>
	</item>
		<item>
		<title>Calculator Alpha for iPad released on the App Store</title>
		<link>http://engineeringtheworld.wordpress.com/2010/10/11/calculator-alpha-for-ipad-released-on-the-app-store/</link>
		<comments>http://engineeringtheworld.wordpress.com/2010/10/11/calculator-alpha-for-ipad-released-on-the-app-store/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 07:48:02 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=501</guid>
		<description><![CDATA[Apple just released Calculator Alpha for iPad on the App Store. It is a calculator/converter for the iPad and it is free of charge. http://itunes.apple.com/us/app/calcualtor-alpha/id396151092?mt=8 Try it out and let me know what you think of it&#8230; Some of the features are: works in portrait and landscape mode memory functions (add, subtract, recall, delete) elementary [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=501&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apple just released Calculator Alpha for iPad on the App Store. It is a calculator/converter for the iPad and it is free of charge. </p>
<p><a href="http://itunes.apple.com/us/app/calcualtor-alpha/id396151092?mt=8">http://itunes.apple.com/us/app/calcualtor-alpha/id396151092?mt=8</a></p>
<p>Try it out and let me know what you think of it&#8230;</p>
<p>Some of the features are:</p>
<ul>
<li>works in portrait and landscape mode</li>
<li>memory functions (add, subtract, recall, delete)</li>
<li>elementary functions (x2, xy, sin, cos, log and others)</li>
<li>flow display &#8211; shows last 3 calculations</li>
<li>saves state, so the next time it is opened you are back where you finished</li>
</ul>
<div id="attachment_490" class="wp-caption alignnone" style="width: 590px"><a href="http://engineeringtheworld.files.wordpress.com/2010/10/ipadcalc.jpg"><img src="http://engineeringtheworld.files.wordpress.com/2010/10/ipadcalc.jpg?w=580&#038;h=313" alt="" title="ipadCalc" width="580" height="313" class="size-full wp-image-490" /></a><p class="wp-caption-text">Calculator Alpha for iPad</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/501/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=501&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2010/10/11/calculator-alpha-for-ipad-released-on-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/10/ipadcalc.jpg" medium="image">
			<media:title type="html">ipadCalc</media:title>
		</media:content>
	</item>
		<item>
		<title>iPad Calculator Alpha and KD Jezica website</title>
		<link>http://engineeringtheworld.wordpress.com/2010/10/07/kd-jezica-website-ipad-calculator-alpha/</link>
		<comments>http://engineeringtheworld.wordpress.com/2010/10/07/kd-jezica-website-ipad-calculator-alpha/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 17:38:05 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=489</guid>
		<description><![CDATA[Hey, it has been a while since I last posted something here on this blog. I have been busy with building my calculator/converter for iPad called Calculator Alpha. I uploaded it to Apple for review, so probably it will be up there on the App Store in couple of days (or maybe a week). It [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=489&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey, it has been a while since I last posted something here on this blog. I have been busy with building my calculator/converter for iPad called Calculator Alpha. I uploaded it to Apple for review, so probably it will be up there on the App Store in couple of days (or maybe a week). It is going to be free and I think it will be competitive with other calculators out there for the iPad.</p>
<div id="attachment_490" class="wp-caption alignnone" style="width: 590px"><a href="http://engineeringtheworld.files.wordpress.com/2010/10/ipadcalc.jpg"><img src="http://engineeringtheworld.files.wordpress.com/2010/10/ipadcalc.jpg?w=580&#038;h=313" alt="" title="ipadCalc" width="580" height="313" class="size-full wp-image-490" /></a><p class="wp-caption-text">Calculator Alpha for iPad</p></div>
<p>I was also busy building a website for my basketball team here in Slovenia. It is now live at <a href="http://www.kdjezica.com">http://www.kdjezica.com</a>. It is build on WordPress blogging platform (like this one here, but is hosted on it&#8217;s own server). Hopefully we will keep it up to date so everyone will be able to follow what is going on with our basketball team.</p>
<p>On <a href="http://www.kdjezica.com">kdjezica.com</a> we will represent all the teams that are part of KD Ježica, from the men&#8217;s team that plays in the second Slovenian league (which I am part of) to the youngest members of our club.</p>
<div id="attachment_491" class="wp-caption alignnone" style="width: 590px"><a href="http://engineeringtheworld.files.wordpress.com/2010/10/engworl.jpg"><img src="http://engineeringtheworld.files.wordpress.com/2010/10/engworl.jpg?w=580&#038;h=116" alt="" title="engworl" width="580" height="116" class="size-full wp-image-491" /></a><p class="wp-caption-text">New kdjezica.com website</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/489/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=489&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2010/10/07/kd-jezica-website-ipad-calculator-alpha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/10/ipadcalc.jpg" medium="image">
			<media:title type="html">ipadCalc</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/10/engworl.jpg" medium="image">
			<media:title type="html">engworl</media:title>
		</media:content>
	</item>
		<item>
		<title>Social Calc just released on the App Store</title>
		<link>http://engineeringtheworld.wordpress.com/2010/09/24/social-calc-just-released-on-the-app-store/</link>
		<comments>http://engineeringtheworld.wordpress.com/2010/09/24/social-calc-just-released-on-the-app-store/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 17:54:57 +0000</pubDate>
		<dc:creator>Ladislav Klinc</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://engineeringtheworld.wordpress.com/?p=471</guid>
		<description><![CDATA[My first app that I submitted to the App Store was just approved. It can be found on: Social Calc Social Calc calculates how two names get along for love, friendship, business, kids and partying. Algorithm to calculate percentage is what we used when we were kids in elementary school, it was fun then and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=471&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My first app that I submitted to the App Store was just approved. It can be found on: <a href="http://bit.ly/socialcalculator">Social Calc</a></p>
<p>Social Calc calculates how two names get along for love, friendship, business, kids and partying. </p>
<p>Algorithm to calculate percentage is what we used when we were kids in elementary school, it was fun then and I guess it is still fun now (after 20 years).</p>
<p>Application consistis of 5 calculators:</p>
<ul>
<li>Love Calculator</li>
<li>Friendship Calculator</li>
<li>Business Partner Calculator</li>
<li>Kids Calculator</li>
<li>Party Calculator</li>
</ul>
<table cellspacing="5" cellpadding="0" width="100%">
<tr>
<td>
<a href="http://bit.ly/socialcalculator"><img src="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot1.png?w=260" alt="" title="screenshot1" width="260" class="alignnone size-full wp-image-472" align="left" /></a></td>
<td>
<a href="http://bit.ly/socialcalculator"><img src="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot2.png?w=260" alt="" title="screenshot2" width="260" class="alignnone size-full wp-image-473" align="left" /></a></td>
</tr>
<tr>
<td><a href="http://bit.ly/socialcalculator"><img src="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot3.png?w=260" alt="" title="screenshot3" width="260" class="alignnone size-full wp-image-482" /></a></td>
<td><a href="http://bit.ly/socialcalculator"><img src="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot4.png?w=260" alt="" title="screenshot4" width="260" class="alignnone size-full wp-image-483" /></a></td>
</tr>
<tr>
<td><a href="http://bit.ly/socialcalculator"><img src="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot5.png?w=260" alt="" title="screenshot5" width="260" class="alignnone size-full wp-image-481" /></a></td>
<td>&nbsp;</td>
</tr>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/engineeringtheworld.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/engineeringtheworld.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/engineeringtheworld.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/engineeringtheworld.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/engineeringtheworld.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/engineeringtheworld.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/engineeringtheworld.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/engineeringtheworld.wordpress.com/471/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=engineeringtheworld.wordpress.com&amp;blog=10304280&amp;post=471&amp;subd=engineeringtheworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://engineeringtheworld.wordpress.com/2010/09/24/social-calc-just-released-on-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f76bec7c2864f084b34e244528bf5cfe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ladislav Klinc</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot1.png" medium="image">
			<media:title type="html">screenshot1</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot2.png" medium="image">
			<media:title type="html">screenshot2</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot3.png" medium="image">
			<media:title type="html">screenshot3</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot4.png" medium="image">
			<media:title type="html">screenshot4</media:title>
		</media:content>

		<media:content url="http://engineeringtheworld.files.wordpress.com/2010/09/screenshot5.png" medium="image">
			<media:title type="html">screenshot5</media:title>
		</media:content>
	</item>
	</channel>
</rss>
