<?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/"
	>

<channel>
	<title>Mobilewits &#187; Open-source</title>
	<atom:link href="http://www.mobilewits.com/blog/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mobilewits.com/blog</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 27 Aug 2015 22:17:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>TipCalc</title>
		<link>http://www.mobilewits.com/blog/tipcalc/</link>
		<comments>http://www.mobilewits.com/blog/tipcalc/#comments</comments>
		<pubDate>Wed, 06 May 2015 12:06:42 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=591</guid>
		<description><![CDATA[TipCalc is based on an existing iOS and Android sample but has been completely rewritten for Xamarin.Forms using XAML and data-binding. This new version now builds for iOS, Android, and Windows Phone. If you open the solution in Xamarin Studio, it will not be able to load the Windows Phone project; and if you open [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>TipCalc is based on an existing iOS and Android sample but has been completely rewritten for Xamarin.Forms using XAML and data-binding. This new version now builds for iOS, Android, and Windows Phone.</p>
<p><strong>If you open the solution in Xamarin Studio, it will not be able to load the Windows Phone project; and if you open the solution in Xamarin Studio under Windows, it will not be able to load the iOS project either.</strong></p>
<p>TipCalc lets you type in a food-and-drink subtotal and a post-tax total from your restaurant bill and then select a tip percentage. It applies the percentage to the food-and-drink subtotal and adds the result to the post-tax total, rounded to the nearest quarter.</p>
<p>The solution contains four projects: the iOS, Android, and Windows Phone projects are small and standard Xamarin.Forms stub applications. All the common application code is in the TipCalc portable class library. The calculations are handled in a<em>TipCalcModel</em> class, and the entire user interface is realized in XAML in the TipCalcPage.xaml file. Two data-binding value converters help massage the data between the data model and the XAML file.</p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/01Android-154x300.png" alt="01Android" width="154" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/01ios-160x300.png" alt="01ios" width="160" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/01wp-169x300.png" alt="01wp" width="169" height="300" /></a></p>
<p>Author : <a target="_blank" href="https://github.com/rzaitov">https://github.com/rzaitov</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/xamarin-forms-samples/tree/master/TipCalc">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/tipcalc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AirLocate</title>
		<link>http://www.mobilewits.com/blog/airlocate/</link>
		<comments>http://www.mobilewits.com/blog/airlocate/#comments</comments>
		<pubDate>Wed, 06 May 2015 11:32:46 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=583</guid>
		<description><![CDATA[AirLocate shows how to use CLLocationManager to monitor and range CLBeaconRegion. The code also provides an example of how you can calibrate and configure an iOS device as a beacon with CoreBluetooth. You can configure an iOS device as a beacon as follows: 1) Obtain two iOS devices equipped with Bluetooth LE. One will be [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>AirLocate shows how to use CLLocationManager to monitor and range CLBeaconRegion. The code also provides an example of how you can calibrate and configure an iOS device as a beacon with CoreBluetooth.</p>
<p><strong>You can configure an iOS device as a beacon as follows:</strong><br />
1) Obtain two iOS devices equipped with Bluetooth LE. One will be a target device, one will be a remote (calibration) device.<br />
2) Load and launch this app on both devices.<br />
3) Turn the target device into a beacon by selecting Configuration and turning on the Enabled switch.<br />
4) Take the calibration device and move one meter away from the target device.<br />
5) On the calibration device start the calibration process by selecting Calibration.<br />
6) Choose the target device from the table view.<br />
7) The calibration process will start. You should wave the calibration device from side-to-side while this process is running.<br />
8) When the calibration process is done, it will show a calibrated RSSI value on the screen.<br />
9) On the target device, go back to the Configuration screen and enter this value under Measured Power.</p>
<p><strong>Note:</strong> The calibration process is optional, but recommended as it will fine-tune ranging for your environment. You can configure an iOS device as a beacon without calibrating it by not specifying a measured power. If a measured power is not specified, CoreLocation default to a pre-determined value.</p>
<p>Once you&#8217;ve setup your target device as a beacon, you can use this app to demo beacon ranging and monitoring. To demo ranging, select Ranging from the remote device.RangingViewController ranges a set of CLBeaconRegion. To demo monitoring, select Monitoring from the remote device.MonitoringViewController allows you to configure aCLBeaconRegion to monitor.</p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/01-208x300.png" alt="01" width="208" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/02-208x300.png" alt="02" width="208" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/03-208x300.png" alt="03" width="208" height="300" /></p>
<p>&nbsp;</p>
<p>Author : <a target="_blank" href="https://github.com/aaronsky">https://github.com/aaronsky</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/monotouch-samples/tree/master/AirLocate">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/airlocate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSCustomView</title>
		<link>http://www.mobilewits.com/blog/nscustomview/</link>
		<comments>http://www.mobilewits.com/blog/nscustomview/#comments</comments>
		<pubDate>Wed, 06 May 2015 11:03:22 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=571</guid>
		<description><![CDATA[This example shows the creation of two custom NSViews, which each paint themself via different mechanisms. • One overrides the draw method and handles the painting there. • One arranges a set of Core Graphichs layers to handle the drawing. Author : https://github.com/dylankelly5. If you like this tutorial then you can download full copy of the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This example shows the creation of two custom NSViews, which each paint themself via different mechanisms.</p>
<p>•  One overrides the draw method and handles the painting there.<br />
•  One arranges a set of Core Graphichs layers to handle the drawing.</p>
<p style="float: left; width: 300px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/circle-300x204.png" alt="circle" width="300" height="204" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/oval-300x204.png" alt="oval" width="300" height="204" /></p>
<p>Author : <a target="_blank" href="https://github.com/dylankelly5">https://github.com/dylankelly5</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/mac-samples/tree/master/NSCustomView">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/nscustomview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MotionGraphs</title>
		<link>http://www.mobilewits.com/blog/motiongraphs/</link>
		<comments>http://www.mobilewits.com/blog/motiongraphs/#comments</comments>
		<pubDate>Wed, 06 May 2015 10:54:53 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=563</guid>
		<description><![CDATA[This is a port of the WWDC2012 sample. MotionGraphs is an application project that demonstrates a how to use the push method to receive data from Core Motion. It displays graphs of accelerometer, gyroscope and device motion data. The project has the following classes : GraphView — A UIView subclass that provides the ability to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This is a port of the WWDC2012 sample.</p>
<p>MotionGraphs is an application project that demonstrates a how to use the push method to receive data from Core Motion. It displays graphs of accelerometer, gyroscope and device motion data.</p>
<p>The project has the following classes :</p>
<p><strong>GraphView</strong> — A UIView subclass that provides the ability to plot accelerometer, gyroscope or device motion data. This is the same GraphView as the one in the AccelerometerGraph sample.</p>
<p><strong>GraphViewController</strong> — A view controller that handles the display of accelerometer, gyroscope, and device motion data. Depending on the argument that is passed into its constructor it can display graph(s) generated from one of the three data types.</p>
<p><strong>AppDelegate</strong> — A standard implementation of the UIApplicationDelegate protocol.</p>
<p>If you run the compiled application on a device that does not have a gyroscope, no gyroscope or device motion data will be available. You cannot effectively run the application on the simulator.</p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/IMG_3174-200x300.png" alt="IMG_3174" width="200" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/IMG_3175-200x300.png" alt="IMG_3175" width="200" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/IMG_3176-200x300.png" alt="IMG_3176" width="200" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/05/IMG_3177-200x300.png" alt="IMG_3177" width="200" height="300" class="alignnone size-medium wp-image-567" /></p>
<p>&nbsp;<br />
Author : <a target="_blank" href="https://github.com/aaronsky">https://github.com/aaronsky</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/monotouch-samples/tree/master/MotionGraphs">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/motiongraphs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BoxView Clock</title>
		<link>http://www.mobilewits.com/blog/boxview-clock/</link>
		<comments>http://www.mobilewits.com/blog/boxview-clock/#comments</comments>
		<pubDate>Tue, 21 Apr 2015 12:35:19 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=555</guid>
		<description><![CDATA[A classic analog clock realized entirely with BoxView.If you open the solution in Xamarin Studio, it will not be able to load the Windows Phone project; and if you open the solution in Xamarin Studio under Windows, it will not be able to load the iOS project either. Xamarin.Forms doesn&#8217;t yet have a vector graphics [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A classic analog clock realized entirely with BoxView.If you open the solution in Xamarin Studio, it will not be able to load the Windows Phone project; and if you open the solution in Xamarin Studio under Windows, it will not be able to load the iOS project either.</p>
<p>Xamarin.Forms doesn&#8217;t yet have a vector graphics programming interface, but it does have a BoxView. Although normally used for displaying rectangular blocks of color, BoxView can be sized, positioned, and rotated. This is enough to render a classic analog clock.</p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/01Android2-154x300.png" alt="01Android" width="154" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/01iOS-147x300.png" alt="01iOS" width="147" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/01wp3-168x300.png" alt="01wp" width="168" height="300" class="alignnone size-medium wp-image-558" /></p>
<p>&nbsp;</p>
<p>Author : <a target="_blank" href="https://github.com/rzaitov">https://github.com/rzaitov</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/xamarin-forms-samples/tree/master/BoxViewClock">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/boxview-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tabbed Page</title>
		<link>http://www.mobilewits.com/blog/tabbed-page/</link>
		<comments>http://www.mobilewits.com/blog/tabbed-page/#comments</comments>
		<pubDate>Tue, 21 Apr 2015 12:28:38 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=549</guid>
		<description><![CDATA[The Xamarin.Forms TabbedPage allows easy navigation among several similar pages. The actual implementation ofTabbedPage is different on the iPhone, Android, and Windows Phone platform. As this sample program demonstrates, it is easiest to set the ItemsSource property of TabbedPage to a collection of data items, and use data-binding in XAML to define a user interface [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The Xamarin.Forms TabbedPage allows easy navigation among several similar pages. The actual implementation ofTabbedPage is different on the iPhone, Android, and Windows Phone platform. As this sample program demonstrates, it is easiest to set the ItemsSource property of TabbedPage to a collection of data items, and use data-binding in XAML to define a user interface that displays these items.</p>
<p>The TabbedPageDemo displays information about three species of primates with photographs from Wikipedia.</p>
<p>If you open the solution in Xamarin Studio, it will not be able to load the Windows Phone project; and if you open the solution in Xamarin Studio under Windows, it will not be able to load the iOS project either.</p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/01Android1-154x300.png" alt="01Android" width="154" height="300" class="alignnone size-medium wp-image-550" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/01ios2-160x300.png" alt="01ios" width="160" height="300" class="alignnone size-medium wp-image-551" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/01wp2-168x300.png" alt="01wp" width="168" height="300" class="alignnone size-medium wp-image-552" /></p>
<p>&nbsp;</p>
<p>Author : <a target="_blank" href="https://github.com/rzaitov">https://github.com/rzaitov</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/xamarin-forms-samples/tree/master/TabbedPageDemo">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/tabbed-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Maps</title>
		<link>http://www.mobilewits.com/blog/working-with-maps/</link>
		<comments>http://www.mobilewits.com/blog/working-with-maps/#comments</comments>
		<pubDate>Tue, 21 Apr 2015 11:02:52 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=518</guid>
		<description><![CDATA[This sample relates to the Working with Maps in Xamarin.Forms doc. Android :- &#160; &#160; &#160; iOS :- Windows :- &#160; Author : https://github.com/rzaitov. If you like this tutorial then you can download full copy of the code from github. ]]></description>
				<content:encoded><![CDATA[<p>This sample relates to the Working with Maps in Xamarin.Forms doc.</p>
<p><strong>Android :-</strong></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-map-180x300.png" alt="Android-map" width="180" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-Maps1-169x300.png" alt="Android-Maps1" width="169" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-Maps2-169x300.png" alt="Android-Maps2" width="169" height="300" class="alignnone size-medium wp-image-521" /></p>
<p>&nbsp;</p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-Maps3-169x300.png" alt="Android-Maps3" width="169" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-Maps4-169x300.png" alt="Android-Maps4" width="169" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-Maps5a-169x300.png" alt="Android-Maps5a" width="169" height="300" /></p>
<p>&nbsp;</p>
<p style="float: left; width: 250px;"><img style="border: solid 1px #000;" src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-Maps5b-169x300.png" alt="Android-Maps5b" width="169" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/Android-pins-180x300.png" alt="Android-pins" width="180" height="300" /></p>
<p>&nbsp;</p>
<p><strong>iOS :-</strong></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/iOS-geocoder-160x300.png" alt="iOS-geocoder" width="160" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/iOS-map-160x300.png" alt="iOS-map" width="160" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/iOS-pins-160x300.png" alt="iOS-pins" width="160" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/maps-zoom-sml-300x184.png" alt="maps-zoom-sml" width="300" height="184" /></p>
<p><strong>Windows :-</strong></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/WinPhone-geocoder-167x300.png" alt="WinPhone-geocoder" width="167" height="300" /></p>
<p style="float: left; width: 250px;"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/WinPhone-map-166x300.png" alt="WinPhone-map" width="166" height="300" /></p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/WinPhone-pins-167x300.png" alt="WinPhone-pins" width="167" height="300" class="alignnone size-medium wp-image-540" /></p>
<p>&nbsp;</p>
<p>Author : <a target="_blank" href="https://github.com/rzaitov">https://github.com/rzaitov</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/xamarin-forms-samples/tree/master/WorkingWithMaps">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/working-with-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP Client</title>
		<link>http://www.mobilewits.com/blog/http-client/</link>
		<comments>http://www.mobilewits.com/blog/http-client/#comments</comments>
		<pubDate>Tue, 21 Apr 2015 10:41:43 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=514</guid>
		<description><![CDATA[An example on using both the .NET and Objective-C classes to send a web request in one MonoTouch application. Author : https://github.com/dylankelly5. If you like this tutorial then you can download full copy of the code from github. ]]></description>
				<content:encoded><![CDATA[<p>An example on using both the .NET and Objective-C classes to send a web request in one MonoTouch application.</p>
<p><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/HttpClient-160x300.jpg" alt="HttpClient" width="160" height="300" class="alignnone size-medium wp-image-516" /></p>
<p>Author : <a target="_blank" href="https://github.com/dylankelly5">https://github.com/dylankelly5</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/monotouch-samples/tree/master/HttpClient">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/http-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bubble Chat</title>
		<link>http://www.mobilewits.com/blog/bubble-chat/</link>
		<comments>http://www.mobilewits.com/blog/bubble-chat/#comments</comments>
		<pubDate>Tue, 21 Apr 2015 10:31:34 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=510</guid>
		<description><![CDATA[This project shows one way of implementing a bubble-chat rendering similar to the iPhone Messages application using MonoTouch.Dialog and a custom ChatBubble element. This also shows how to setup a Login screen that transitions to the chat. On startup, it will request a login and password (both are &#8220;Root&#8221;). The ChatViewController renders the discussion as [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This project shows one way of implementing a bubble-chat rendering similar to the iPhone Messages application using MonoTouch.Dialog and a custom ChatBubble element.</p>
<p>This also shows how to setup a Login screen that transitions to the chat. On startup, it will request a login and password (both are &#8220;Root&#8221;).</p>
<p>The ChatViewController renders the discussion as well as a styled entry to get messages from the user and resizes the entry as needed (up to a point).</p>
<p>The ChatBubble hardcodes two images for left and right bubbles which are stretched using iOSUIImage support for stretching images. The ChatBubble does not really support configuring fonts or bubble colors, you will need to modify the source accordingly. Luckily the entire bubble code support is less than 100 lines of code.</p>
<p><a href="http://mobilewits.com/blog/wp-content/uploads/2015/04/BubbleCell.png"><img src="http://mobilewits.com/blog/wp-content/uploads/2015/04/BubbleCell-154x300.png" alt="BubbleCell" width="154" height="300" class="alignnone size-medium wp-image-511" /></a></p>
<p>Author : <a target="_blank" href="https://github.com/olegoid">https://github.com/olegoid</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank"href="https://github.com/xamarin/monotouch-samples/tree/master/BubbleCell">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/bubble-chat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Background Execution</title>
		<link>http://www.mobilewits.com/blog/background-execution/</link>
		<comments>http://www.mobilewits.com/blog/background-execution/#comments</comments>
		<pubDate>Tue, 21 Apr 2015 10:02:44 +0000</pubDate>
		<dc:creator><![CDATA[xamarin]]></dc:creator>
				<category><![CDATA[Open-source]]></category>

		<guid isPermaLink="false">http://mobilewits.com/blog/?p=494</guid>
		<description><![CDATA[This sample illustrates how to develop multitasking (background execution) aware applications in Xamarin.iOS. The AppDelegate class illustrates the application lifecycle methods that should be overridden in order to gracefully handle state changes. Additionally, it illustrates how to register a long running task that will finish executing even though the app is put in a background [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This sample illustrates how to develop multitasking (background execution) aware applications in Xamarin.iOS. The AppDelegate class illustrates the application lifecycle methods that should be overridden in order to gracefully handle state changes. Additionally, it illustrates how to register a long running task that will finish executing even though the app is put in a background state.</p>
<p>The home screen has a button that will launch a background task that will execute even if the app is backgrounded.</p>
<p><img style="border: solid 1px #000;" src="http://mobilewits.com/blog/wp-content/uploads/2015/04/BackgroundExecution01-167x300.png" alt="BackgroundExecution01" width="167" height="300" /></p>
<p><img style="border: solid 1px #000;" src="http://mobilewits.com/blog/wp-content/uploads/2015/04/BackgroundExecution02.png" alt="BackgroundExecution02" width="831" height="484" /></p>
<p>Author : <a target="_blank" href="https://github.com/olegoid">https://github.com/olegoid</a>.</p>
<p><strong>If you like this tutorial then you can download full copy of the code from <a target="_blank" href="https://github.com/xamarin/monotouch-samples/tree/master/BackgroundExecution">github</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilewits.com/blog/background-execution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
