<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Blog : Mobisoft Infotech</title>
	
	<link>http://www.mobisoftinfotech.com/blog</link>
	<description>iPhone, Android, Blackberry</description>
	<lastBuildDate>Wed, 25 Jan 2012 05:50:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BlogMobisoftInfotech" /><feedburner:info uri="blogmobisoftinfotech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>iOS 5 Core Location</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/WMNs6O0y40o/</link>
		<comments>http://www.mobisoftinfotech.com/blog/iphone/1474/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 13:52:03 +0000</pubDate>
		<dc:creator>pratik.hande</dc:creator>
				<category><![CDATA[iPhone - iPad]]></category>
		<category><![CDATA[Core location]]></category>
		<category><![CDATA[CoreLocation]]></category>
		<category><![CDATA[Google Map]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[GPS iPhone]]></category>
		<category><![CDATA[iOS5]]></category>
		<category><![CDATA[iPhone Google map]]></category>
		<category><![CDATA[Location Tracking]]></category>
		<category><![CDATA[Map integration iPhone]]></category>
		<category><![CDATA[Speed iPhone user]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1474</guid>
		<description><![CDATA[The following tutorial explains the use of Core Location Framework from iOS 5. This application demonstrates use of 1) Core Location to track the location of the iphone 2) Map kit to visualize the location of the iphone 3) It places waypoints on the map after every 10 seconds and 4) Joins those waypoints using <a href="http://www.mobisoftinfotech.com/blog/iphone/1474/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>The following tutorial explains the use of Core Location Framework from iOS 5.</p>
<p>This application demonstrates use of<br />
1) Core Location to track the location of the iphone<br />
2) Map kit to visualize the location of the iphone<br />
3) It places waypoints on the map after every 10 seconds and<br />
4) Joins those waypoints using a black colored line. </p>
<p><strong>Note</strong> : It is suggested to try out the application on the actual device as you cannot simulate location changes on the simulator</p>
<p>The Screenshots below explain how to<br />
1) Create an xcode project using Xcode 4<br />
2) Adding frameworks to the project (Mapkit and Core Location Framework)<br />
3) Adding Delegates (MKMapViewDelegate, CLLocationManagerDelegate, UITextFieldDelegate)<br />
4) Adding the basic UI elements using Interface builder </p>
<div>

<a href='http://www.mobisoftinfotech.com/blog/iphone/1474/attachment/create_project/' title='create_project'><img src="http://www.mobisoftinfotech.com/blog/wp-content/uploads/2012/01/create_project.tiff" class="attachment-thumbnail" alt="create_project" title="create_project" /></a>
<a href='http://www.mobisoftinfotech.com/blog/iphone/1474/attachment/project_name/' title='Project_name'><img src="http://www.mobisoftinfotech.com/blog/wp-content/uploads/2012/01/Project_name.tiff" class="attachment-thumbnail" alt="Project_name" title="Project_name" /></a>
<a href='http://www.mobisoftinfotech.com/blog/iphone/1474/attachment/add_frameworks/' title='Add_Frameworks'><img src="http://www.mobisoftinfotech.com/blog/wp-content/uploads/2012/01/Add_Frameworks.tiff" class="attachment-thumbnail" alt="Add_Frameworks" title="Add_Frameworks" /></a>
<a href='http://www.mobisoftinfotech.com/blog/iphone/1474/attachment/add_delegates/' title='Add_Delegates'><img src="http://www.mobisoftinfotech.com/blog/wp-content/uploads/2012/01/Add_Delegates.tiff" class="attachment-thumbnail" alt="Add_Delegates" title="Add_Delegates" /></a>
<a href='http://www.mobisoftinfotech.com/blog/iphone/1474/attachment/add_interface_elements/' title='Add_Interface_Elements'><img src="http://www.mobisoftinfotech.com/blog/wp-content/uploads/2012/01/Add_Interface_Elements.tiff" class="attachment-thumbnail" alt="Add_Interface_Elements" title="Add_Interface_Elements" /></a>

</div>
<p>After this, i have included the header file which contains the properties and IBOutlets for the interface elements.</p>
<pre>
// iosViewController.h
// Tracker
// Created by Pratik Hande.
// Copyright (c) 2012. All rights reserved.

#import &lt;UIKit/UIKit.h&gt;
#import &lt;CoreLocation/CoreLocation.h&gt;
#import &lt;MapKit/MapKit.h&gt;

@interface iosViewController : UIViewController &lt;MKMapViewDelegate, CLLocationManagerDelegate, UITextFieldDelegate&gt;{
    // IBOutlets for the results of core location updates to be displayed
    IBOutlet UITextField *latitudeLongitude;
    IBOutlet UITextField *time;
    IBOutlet UITextField *speed;
    IBOutlet UITextField *distance;

    // Core Location Manager for managing location updates
    CLLocationManager *locationManager;

    // Map View for displaying results to a map
    IBOutlet MKMapView *map;

    // An array of way points where pins would be dropped on the map
    NSMutableArray *wayPoints;

    // Timer elements for timing location updates
    NSTimer *stopTimer;
    NSDate *stopTime;
    NSDate *startTime;

    // Total distance form the starting location
    float totalDistance;

    // Location instances to save inetermediate locations
    CLLocation *tempNewLocation, *tempOldLocation;

    // To draw the connecting line between waypoints
    MKPolyline * routeLine;
}

@property(nonatomic,retain) IBOutlet UITextField *latitudeLongitude;
@property(nonatomic,retain) IBOutlet UITextField *time;
@property(nonatomic,retain) IBOutlet UITextField *speed;
@property(nonatomic,retain) IBOutlet UITextField *distance;
@property(nonatomic, retain) CLLocationManager *locationManager;
@property(nonatomic, retain) IBOutlet MKMapView *map;
@property(nonatomic, retain) MKPolyline *routeLine;

@end
</pre>
<p>Implementation explained<br />
In viewDidLoad()<br />
1) We first create an instance of CLLocationManager and provide a delegate for it which is self. 2) We set the desiredAccuracy to 6.0 which indicates the accuracy desired on location horizontally.<br />
3) We set the distanceFilter, which indicates the distance change after which a location update is received.<br />
4) We call startUpdatingLocation method to start receiving location updates.<br />
5) We assign a delegate for map view to self.<br />
6) The setShowsUserLocation:YES shows a blue marker on the map view indicating the current location.<br />
7) The call to setUserTrackingMode:MKUserTrackingModeFollow animated:YES  allows the tracking of location on the map in an animated manner.<br />
 <img src='http://www.mobisoftinfotech.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> We also initialize an array for waypoints which would hold the locations on the map which have been marked.<br />
9) Next we create, stop timer for based on a 10 second interval. </p>
<pre>
//
//  iosViewController.m
//  Tracker
//
//  Created by Pratik Hande.
//  Copyright (c) 2012. All rights reserved.
//

#import "iosViewController.h"

@implementation iosViewController

@synthesize latitudeLongitude, time, speed, distance, locationManager, map, routeLine;

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
    [super viewDidLoad];

    locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    locationManager.desiredAccuracy = 6.0;
    locationManager.distanceFilter = 6.0;
    [locationManager startUpdatingLocation ];

    map.delegate = self;
    [map setShowsUserLocation:YES];
    [map setUserTrackingMode:MKUserTrackingModeFollow animated:YES];

    wayPoints = [[NSMutableArray alloc] initWithCapacity:30];
    totalDistance = 0.0;

    stopTime = [NSDate dateWithTimeIntervalSinceNow:140];
    startTime = [NSDate date];

    SEL sel = @selector(timerTargetMethod);
    NSInvocation* inv = [NSInvocation invocationWithMethodSignature:
                         [self methodSignatureForSelector:sel]];
    [inv setTarget:self];
    [inv setSelector:sel];

    stopTimer = [NSTimer scheduledTimerWithTimeInterval:10 invocation:inv repeats:true];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
	[super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
	[super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
    if(newLocation != nil &amp;&amp; oldLocation != newLocation)
    {
        tempNewLocation = newLocation;
        tempOldLocation = oldLocation;
    }
}

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{

}

- (void)mapView:(MKMapView *)mv didAddAnnotationViews:(NSArray *)views
{
    MKAnnotationView *annotationView = [views objectAtIndex:0];
    id mp = [annotationView annotation];
    MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance([mp coordinate] ,250,250);

    [mv setRegion:region animated:YES];
}

// MKMapViewDelegate
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id )overlay
{
    MKOverlayView* overlayView = nil;
    MKPolylineView  * routeLineView = [[MKPolylineView alloc] initWithPolyline:self.routeLine];
    routeLineView.fillColor = [UIColor colorWithRed:0.0-1.0 green:0.0-1.0 blue:0.0-1.0 alpha:1.0f];
    routeLineView.strokeColor = [UIColor colorWithRed:0.0-1.0 green:0.0-1.0 blue:0.0-1.0 alpha:1.0f];
    routeLineView.lineWidth = 10;
    routeLineView.lineCap = kCGLineCapSquare;
    overlayView = routeLineView;
    return overlayView;

}

//define the targetmethod
-(void) timerTargetMethod
{

    if([[NSDate date] timeIntervalSinceDate:startTime] &gt;= 140)
    {
        [stopTimer invalidate];
        [locationManager stopUpdatingLocation];
        NSLog(@"Time started at %@", startTime);
        NSLog(@"Time up at %@", stopTime);
    }
    else if (tempOldLocation.coordinate.latitude == tempNewLocation.coordinate.latitude   &amp;&amp; tempNewLocation.coordinate.longitude == tempOldLocation.coordinate.longitude)
    {
        NSLog(@" Fix location found ");
    }
    else if( [[NSDate date] timeIntervalSinceDate:startTime] &gt;= 19 )
    {
        if(roundf([[NSDate date] timeIntervalSinceDate:startTime]) == 20)
        {
            NSLog(@"First Time Location Update");
            latitudeLongitude.text = [[ NSString alloc] initWithFormat:@"%g , %g", tempNewLocation.coordinate.latitude, tempNewLocation.coordinate.longitude];

            float interval = [[NSDate date] timeIntervalSinceDate:startTime];
            int okInterval = roundf(interval);
            NSLog(@"Interval 1 , %d", okInterval );
            time.text = [[ NSString alloc] initWithFormat:@"%d", okInterval  - 20];
            speed.text = @"0";
            totalDistance =  0;
            distance.text = @"0 meters";
        }
        else
        {
            latitudeLongitude.text = [[ NSString alloc] initWithFormat:@"%g , %g", tempNewLocation.coordinate.latitude, tempNewLocation.coordinate.longitude];

            float interval = [[NSDate date] timeIntervalSinceDate:startTime];
            int okInterval = roundf(interval);
            time.text = [[ NSString alloc] initWithFormat:@"%d", okInterval  - 20];
            NSLog(@"Interval 2 , %d , %f", okInterval , interval);
            if((tempNewLocation.coordinate.latitude == tempOldLocation.coordinate.latitude &amp;&amp; tempNewLocation.coordinate.longitude == tempOldLocation.coordinate.longitude) || tempNewLocation.speed = 0)
                totalDistance +=  [tempNewLocation distanceFromLocation:tempOldLocation] - (tempNewLocation.horizontalAccuracy / 2);
            else
                totalDistance +=  [tempNewLocation distanceFromLocation:tempOldLocation];

            if (totalDistance &lt; 0)
                distance.text = @&quot;0 meters&quot;;
            else
                distance.text = [[ NSString alloc] initWithFormat:@&quot;%g meters&quot;, totalDistance];
        }

        MKPointAnnotation *pa = [[MKPointAnnotation alloc] init];
        pa.coordinate = tempNewLocation.coordinate;
        [map addAnnotation:pa];
        [wayPoints addObject:tempNewLocation];

        MKMapPoint * pointsArray =
        malloc(sizeof(CLLocationCoordinate2D)*2);

        pointsArray[0]= MKMapPointForCoordinate(tempOldLocation.coordinate);
        pointsArray[1]= MKMapPointForCoordinate(tempNewLocation.coordinate);

        routeLine = [MKPolyline polylineWithPoints:pointsArray count:2];
        free(pointsArray);

        if (tempNewLocation.coordinate.latitude - tempOldLocation.coordinate.latitude &lt; 1) {
            [map addOverlay:routeLine];
        }
    }
}

@end
</pre>
<p>Here is the source code for the project. <a href='http://ipaddevelopmentindia.com/wp-content/uploads/2012/01/Tracker1.zip'>Tracker Source Code</a></p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/WMNs6O0y40o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/iphone/1474/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/iphone/1474/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=1474</feedburner:origLink></item>
		<item>
		<title>Lua Programming Tutorial</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/WKnScYfctMY/</link>
		<comments>http://www.mobisoftinfotech.com/blog/lua/lua-programming-tutorial/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 19:24:26 +0000</pubDate>
		<dc:creator>Pritam Barhate</dc:creator>
				<category><![CDATA[Lua]]></category>
		<category><![CDATA[Programming Tutorial]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1461</guid>
		<description><![CDATA[I have written a tutorial about Lua Programming Language. This tutorial is written for programmers who have prior experience with &#8216;C Like&#8217; programming languages such as C, C++, Java or Objective-C. I have tried to keep the description as minimal as possible and strived to make the sample code simple and self explanatory. This should <a href="http://www.mobisoftinfotech.com/blog/lua/lua-programming-tutorial/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>I have written a <a href="http://www.mobisoftinfotech.com/lua-tutorial/lua-scripting-tutorial.html">tutorial</a> about <a href="http://www.lua.org/" title="Lua">Lua Programming Language</a>. This tutorial is written for programmers who have prior experience with &#8216;C Like&#8217; programming languages such as C, C++, Java or Objective-C.</p>
<p>I have tried to keep the description as minimal as possible and strived to make the sample code simple and self explanatory. This should get you up and running with Lua in record time. So you can learn to program mobile games for iPhone and Android with SDK&#8217;s like Corona and Moai.</p>
<p>You can find the tutorial here: <a href="http://www.mobisoftinfotech.com/lua-tutorial/lua-scripting-tutorial.html" title="Lua Scripting Tutorial">Lua Programming Tutorial</a></p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/WKnScYfctMY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/lua/lua-programming-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/lua/lua-programming-tutorial/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lua-programming-tutorial</feedburner:origLink></item>
		<item>
		<title>Key points UI designers should know when designing for iPad</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/4sOSStXo_yI/</link>
		<comments>http://www.mobisoftinfotech.com/blog/iphone/key-points-ui-designers-should-know-when-designing-for-ipad/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 05:55:49 +0000</pubDate>
		<dc:creator>Pritam Barhate</dc:creator>
				<category><![CDATA[iPhone - iPad]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[UI Design]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1442</guid>
		<description><![CDATA[Here are some points UI designers must keep in mind while developing UI for iPAD apps. 1. iPad&#8217;s screen size: 1024px x 768px 2. Status bar height: 20px 3. Screen Space available for the app when running in 1. Portrait Mode: 768px x 1004px 2. Landscape Mode: 1024px x 748px 4. iPad Screen PPI: 132 <a href="http://www.mobisoftinfotech.com/blog/iphone/key-points-ui-designers-should-know-when-designing-for-ipad/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Here are some points UI designers must keep in mind while developing UI for iPAD apps.</p>
<p>1. iPad&#8217;s screen size: 1024px x 768px</p>
<p>2. Status bar height: 20px</p>
<p>3. Screen Space available for the app when running in </p>
<table>
<tr>
<td>1.</td>
<td>Portrait Mode:</td>
<td>768px x 1004px</td>
</tr>
<tr>
<td>2.</td>
<td>Landscape Mode:</td>
<td>1024px x 748px</td>
</tr>
</table>
<p>4. iPad Screen PPI: 132</p>
<p>5. iPad Launch Image Names and Sizes</p>
<table>
<tr>
<th>Filename </th>
<th>Dimensions</th>
</tr>
<tr>
<td>Default-Portrait.png</td>
<td>768px x 1004px</td>
</tr>
<tr>
<td>Default-Landscape.png</td>
<td>1024px x 748px</td>
</tr>
<tr>
<td>Default-PortraitUpsideDown.png</td>
<td>768px x 1004px</td>
</tr>
<tr>
<td>Default-LandscapeLeft.png</td>
<td>1024px x 748px</td>
</tr>
<tr>
<td>Default-LandscapeRight.png</td>
<td>1024px x 748px</td>
</tr>
</table>
<p>6. iPad app icon sizes</p>
<table>
<tr>
<td>Application icon (required for all apps)</td>
<td>	72px x 72px</td>
</tr>
<tr>
<td>App Store icon (required for all apps)</td>
<td>		512px x 512px</td>
</tr>
<tr>
<td>for Spotlight search results </td>
<td>			50px x 50px </td>
</tr>
<tr>
<td>for Settings</td>
<td> 					29px x 29px </td>
</tr>
<tr>
<td>Toolbar and navigation bar icons</td>
<td> 		Approximately 20px x 20px</td>
</tr>
<tr>
<td>Tab bar icons</td>
<td>					Approximately 30px x 30px</td>
</tr>
</table>
<p>7. Photoshop PSD and Vector Templates to get started with:</p>
<p><a href="http://www.teehanlax.com/blog/ipad-gui-psd-version-2/">iPad GUI PSD &#8211; Version 2</a></p>
<p><a href="http://iconlibrary.iconshock.com/icons/ipad-vector-gui-elements-tabs-buttons-menus-icons/">iPad vector GUI elements: tabs buttons menus icons</a></p>
<p><a href="http://www.rawapps.com/849/ipad-gui-kit-in-psd-format-is-here/">iPad GUI Kit in PSD Format</a></p>
<p><a href="http://blog.cocoia.com/2010/iphone-ipad-icon-psd-template/">iPhone / iPad icon PSD template</a></p>
<p>8. <strong>Most important</strong> : It&#8217;s going to be used with touch (fingers not mouse pointer). Hence all UI elements must have at least 30px x 30px room so that they are comfortably touchable. </p>
<p>Also on touch devices, there is no &#8220;mouse over&#8221; effect.</p>
<p>9. <strong>Must read:</strong> <a href="http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/Introduction/Introduction.html">iOS Human Interface Guidelines</a></p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/4sOSStXo_yI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/iphone/key-points-ui-designers-should-know-when-designing-for-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/iphone/key-points-ui-designers-should-know-when-designing-for-ipad/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=key-points-ui-designers-should-know-when-designing-for-ipad</feedburner:origLink></item>
		<item>
		<title>Alternate App Stores / List of Android App Stores</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/zISrr3EsNYU/</link>
		<comments>http://www.mobisoftinfotech.com/blog/android/alternate-app-store-list-of-android-app-stores/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 21:15:58 +0000</pubDate>
		<dc:creator>ravindra.waghmare</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Alternate app stores]]></category>
		<category><![CDATA[list of app stores]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1433</guid>
		<description><![CDATA[Selling an Android app only on Android Market isn&#8217;t enough to reach wider audience. Developers who want to make the android app successful and increase the downloads in short time frame can choose to target alternate Android app stores. Below are almost all the android app stores available. Releasing your app on all these stores <a href="http://www.mobisoftinfotech.com/blog/android/alternate-app-store-list-of-android-app-stores/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Selling an Android app only on Android Market isn&#8217;t enough to reach wider audience. Developers who want to make the android app successful and increase the downloads in short time frame can choose to target alternate Android app stores.  Below are almost all the android app stores available. Releasing your  app on all these stores may not be good decision, however you can target  some of these markets based on, what the store is famous for? or what  kind of audience does the app store serve?</p>
<p>Nevertheless, the list of alternate android app stores would definitely help you increase your app sales.</p>
<p>Android Market &#8211; <a href="https://market.android.com/">https://market.android.com/<br />
</a> Appia &#8211; <a href="http://www.appia.com/">http://www.appia.com/</a><br />
Mobango &#8211; <a href="http://in.mobango.com/">http://in.mobango.com/</a><br />
SlideMe &#8211; <a href="http://slideme.org/">http://slideme.org/</a><br />
Mobiles24 &#8211; <a href="http://www.mobiles24.com/">http://www.mobiles24.com/</a><br />
AndroidPit &#8211; <a href="http://www.androidpit.com/">http://www.androidpit.com/</a><br />
GetJar &#8211; <a href="http://www.getjar.com/">http://www.getjar.com/</a><br />
Handster &#8211; <a href="http://www.handster.com/">http://www.handster.com/</a><br />
Android Lib &#8211; <a href="http://www.androlib.com/">http://www.androlib.com/</a><br />
AndSpot &#8211; <a href="http://andspot.com/">http://andspot.com/</a><br />
NavTech App WareHouse &#8211; <a href="http://www.nn4d.com/appwarehouse/">http://www.nn4d.com/appwarehouse/</a><br />
AppBrain &#8211; <a href="http://www.appbrain.com/">http://www.appbrain.com/</a><br />
AppCity &#8211; <a href="http://promo.appcity.com/">http://promo.appcity.com/</a><br />
Cisco AppHQ &#8211; <a href="https://marketplace.cisco.com/apphq">https://marketplace.cisco.com/apphq</a><br />
Apitalism &#8211; <a href="http://in.appitalism.com/">http://in.appitalism.com/</a><br />
Appoke &#8211; <a href="http://appoke.com/">http://appoke.com/</a><br />
Bloom Worlds &#8211; <a href="https://bloomworlds.com/">https://bloomworlds.com/</a><br />
Camangi Market &#8211; <a href="http://www.camangimarket.com">http://www.camangimarket.com</a><br />
DJuzz &#8211; <a href="http://m.djuzz.com">http://m.djuzz.com</a><br />
Soc.io Mall &#8211; <a href="http://soc.io/">http://soc.io/</a><br />
YAAM(Yet Another Android Market) &#8211; <a href="http://yaam.mobi/">http://yaam.mobi/</a><br />
AppsLib &#8211; <a href="http://appslib.com/">http://appslib.com/</a><br />
AppPlanet &#8211; <a href="http://www.applanet.net/">http://www.applanet.net/</a><br />
Airtel App Central &#8211; <a href="www.airtel.in/apps">www.airtel.in/apps</a><br />
Amazon App Store &#8211; <a href="http://www.amazon.com/mobile-apps">http://www.amazon.com/mobile-apps</a><br />
Pocket Gear &#8211; <a href="http://www.pocketgear.com/">http://www.pocketgear.com/</a><br />
Docomo Market &#8211; <a href="http://www.docomo-market.info/">http://www.docomo-market.info/</a><br />
Fast App &#8211; <a href="http://www.fastapp.com/">http://www.fastapp.com/</a><br />
Handango &#8211; <a href="http://www.handango.com">http://www.handango.com</a><br />
Handmark &#8211; <a href="http://store.handmark.com/">http://store.handmark.com/</a><br />
mJelly &#8211; <a href="http://mjelly.com/apps/tags/android">http://mjelly.com/apps/tags/android</a><br />
Mobihand &#8211; <a href="http://www.mobihand.com/">http://www.mobihand.com/</a><br />
Mobile2Day &#8211; <a href="http://www.mobile2day.com/">http://www.mobile2day.com/</a><br />
Mobile Apps &#8211; <a href="http://www.mobileapps.com">http://www.mobileapps.com</a><br />
MobSpot &#8211; <a href="http://www.mobspot.com/">http://www.mobspot.com/</a><br />
MPlay it &#8211; <a href="http://mplayit.com/">http://mplayit.com/</a><br />
Samsung AppStore &#8211; <a href="http://www.samsungapps.com">http://www.samsungapps.com</a><br />
Storoid &#8211; <a href="http://storeoid.com/">http://storeoid.com/</a><br />
White App &#8211; <a href="http://www.whiteapp.com/">http://www.whiteapp.com/</a></p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/zISrr3EsNYU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/android/alternate-app-store-list-of-android-app-stores/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/android/alternate-app-store-list-of-android-app-stores/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=alternate-app-store-list-of-android-app-stores</feedburner:origLink></item>
		<item>
		<title>Pricing Strategies for iOS / Android apps</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/IHWCPtaE_CI/</link>
		<comments>http://www.mobisoftinfotech.com/blog/iphone/pricing-strategies-for-ios-android-apps/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 07:04:14 +0000</pubDate>
		<dc:creator>Shailendra Sinhasane</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone - iPad]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Freemium]]></category>
		<category><![CDATA[Google Checkout]]></category>
		<category><![CDATA[iAd]]></category>
		<category><![CDATA[iAds]]></category>
		<category><![CDATA[InApp purchase]]></category>
		<category><![CDATA[Monetization]]></category>
		<category><![CDATA[Payments]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Subscription]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1418</guid>
		<description><![CDATA[Monetization of app: What we realized is that "It could have been great to work on pricing strategy while developing the app" - Mobisoft Infotech]]></description>
			<content:encoded><![CDATA[<p>Mobisoft had a top paid app in a revenue-share model with client. App scaled to # 21 in lifestyle category. Naturally, we were excited to know the numbers &#8211; downloads, paid/free, adv hits etc. Although we made it great in terms of popularity, the earnings were less than expected.</p>
<p>The main reason was not having effective strategy for pricing model of app&#8217;s inApp &amp; subscription purchases. What we realized is that &#8220;It could have been great to work on pricing strategy while developing the app&#8221; i.e. Monetization of app.</p>
<p><strong>Why Monetize?</strong></p>
<ul>
<li>Generate money</li>
</ul>
<p><strong>How?</strong></p>
<ul>
<li>Compulsion Loops, there are ways to draw user back into the app</li>
<li>Engagement, does it have engagement elements that could be monetized, i.e. virtual currency?</li>
<li>Value, is it worth your users’ time?</li>
</ul>
<p><strong>Models</strong></p>
<p>1. In-app purchases</p>
<p>2. Subscription</p>
<p>3. Ads</p>
<p>4. Location-based offerings</p>
<p>5. Social media sharing and aggregation</p>
<p><strong>To do</strong></p>
<p><strong>1. Try various in-app models to find the combination that maximize your revenues</strong></p>
<p>•	<strong>Games</strong>: Subscription based casual gaming package + premium payment for sending best scores</p>
<p>•	<strong>E-books for kids</strong>: read once for free. Pay to read again</p>
<p>•	<strong>Security</strong>: free trial (e.g. 30 days) . Paid license for 1 year period</p>
<p><strong>• Video</strong>: pay per gallery</p>
<p><strong>2. Freemium strategy</strong></p>
<ul>
<li>Strongest marketing play Risk reduction</li>
<li>Developers should be focused on finding consumers who are willing to pay, not trying to completely satisfy free-rider consumers</li>
</ul>
<p style="text-align: center;"><strong>In-App single purchase</strong></p>
<p>Pros:</p>
<p>• This is probably the easiest path to implementation and launch and it&#8217;s straightforward and proven</p>
<p>•	Virtual goods/currency through In-App</p>
<p>Cons:</p>
<p>• No ongoing revenue stream No access to user data &#8211; makes selling advertising difficult.</p>
<p>• One potential workaround is to build in-app surveys, which pushes data back.</p>
<p style="text-align: center;"><strong>Subscription &#8211; I</strong></p>
<p>Pros:</p>
<ul>
<li>Revenue is sustainable</li>
<li>Renew just as other web based subscriptions</li>
<li>Easy extendable as an add-on</li>
</ul>
<p>Cons:</p>
<ul>
<li>Requires user management solution</li>
<li>Requires users to leave the app and visit the publisher&#8217;s website to subscribe</li>
<li>Conversion rate lower than in-app purchases</li>
<li><em><strong>Success</strong> : lifetime value of a subscriber &gt; revenue lost from lower conversion</em></li>
</ul>
<p style="text-align: center;"><strong>Subscription &#8211; II</strong></p>
<p><strong>Apple&#8217;s subscription policy for publishers:</strong></p>
<ul>
<li>Apple still gets a 30% cut of any subscription a reader signs up for inside the App Store.</li>
<li>Publishers can now offer an app subscription for a different price than what they might sell their app for in the App Store.</li>
<li>Publishers can&#8217;t link to an external-to-Apple location that sells a subscription within the app.</li>
</ul>
<p style="text-align: center;"><strong>Advertising</strong></p>
<p>Apple: iAd platform – Adv as an app</p>
<p>Third party : adMob, Medialets etc</p>
<p>Pros:</p>
<ul>
<li>Easier to command advertising premiums and less pressure to live up to metrics</li>
</ul>
<p>Cons:</p>
<ul>
<li>Mobile budgets just aren&#8217;t well-defined</li>
<li>Apple changes strategic decision with third party ad integratio<strong>n</strong></li>
</ul>
<p style="text-align: center;">
<p style="text-align: center;"><strong>Location Based Offerings</strong></p>
<p>Pros:</p>
<ul>
<li>Awesome mobile offerings into a high-fidelity advertising environment</li>
</ul>
<p>Cons:</p>
<ul>
<li>Complexity in integrating these systems</li>
<li>Requires the device be connected to the internet</li>
</ul>
<p style="text-align: center;"><strong>Social, Sharing &amp; Aggregation</strong></p>
<p>Pros:</p>
<ul>
<li>Cost-effective</li>
<li>Viral marketing</li>
<li>Better user engagement</li>
</ul>
<p>Cons:</p>
<p>Getting advertiser support on a product as nebulous as this is challenging</p>
<p style="text-align: center;"><strong>Other payment integrations</strong></p>
<ul>
<li>Paypal API integrations</li>
<li>Carrier billing option – Very easy for users to pay</li>
<li>Virtual credits</li>
<li>Google Checkout</li>
</ul>
<p style="text-align: center;"><strong>Other billing platforms</strong></p>
<p>1 MoVend payment platform</p>
<ul>
<li>Easy integration – Supports Android, BlackBerry, Windows Phone7</li>
<li>Sales Track Better user engagement</li>
</ul>
<p>2 Bango</p>
<p>Supports all mobile platforms including Operator billing</p>
<p>Mobisoft Infotech recommend to work with clients as partners and provide various pricing strategies to monetize their app. It will be certainly helpful to clients to get pricing strategies correctly integrated while the app is being developed rather than working on monetization after app is live.</p>
<p>Thank you.</p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/IHWCPtaE_CI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/iphone/pricing-strategies-for-ios-android-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/iphone/pricing-strategies-for-ios-android-apps/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=pricing-strategies-for-ios-android-apps</feedburner:origLink></item>
		<item>
		<title>Key inputs to avoid Apple’s iOS app rejection</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/ySun5y_iDoc/</link>
		<comments>http://www.mobisoftinfotech.com/blog/iphone/key-inputs-to-avoid-apples-ios-app-rejection/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 06:04:14 +0000</pubDate>
		<dc:creator>Shailendra Sinhasane</dc:creator>
				<category><![CDATA[Apple - Mac]]></category>
		<category><![CDATA[iPhone - iPad]]></category>
		<category><![CDATA[App Rejection]]></category>
		<category><![CDATA[App Review]]></category>
		<category><![CDATA[App submission]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Guidelines]]></category>
		<category><![CDATA[Apple SDK]]></category>
		<category><![CDATA[Appstore]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HIG]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone development]]></category>
		<category><![CDATA[iPhone Tutorial]]></category>
		<category><![CDATA[Objective C]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1413</guid>
		<description><![CDATA[An app idea or product app takes much of time and money investment to get into app world existence. The major hurdle to it&#8217;s success could be Apple&#8217;s review process. There can be numerous reasons for Apple&#8217;s rejections for your app. With our superior knowledge of iOS apps development since the day Apple launched their <a href="http://www.mobisoftinfotech.com/blog/iphone/key-inputs-to-avoid-apples-ios-app-rejection/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: justify; line-height: 23.0px; font: 14.0px Arial; color: #333233} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: justify; line-height: 23.0px; font: 14.0px Arial; color: #333233; min-height: 16.0px} span.s1 {color: #000000} -->An app idea or product app takes much of time and money investment to get into app world existence. The major hurdle to it&#8217;s success could be Apple&#8217;s review process. There can be numerous reasons for Apple&#8217;s rejections for your app. With our superior knowledge of iOS apps development since the day Apple launched their SDK, we are able to gain valuable insights into Apple&#8217;s review process.</p>
<p>This will help:</p>
<p>1. Developers to save their precious time and efforts.</p>
<p>2. Let you plan for a better user experience which is the key reason behind all the app store guidelines.</p>
<p>There are few key points which every iPhone/iPad developer should know when developing an app for Apple devices.</p>
<p><strong>Key things to avoid Apple&#8217;s app rejection:</strong></p>
<p><strong>1. Bugs/Crashes</strong>- The most common reason for any app to get rejected are freezing and frequent crashes. Make sure you test it on multiple devices, different OS versions and specifically under varying network conditions. Peer-to-peer reviews/testing done by developers would certainly help. If your app crashes or doesn’t respond during the app review by Apple’s testing team then it will definitely be rejected.</p>
<p><strong>2. Code Download-</strong> You cannot create an app that downloads and executes code that was not present in the app bundle submitted to Apple.</p>
<p><strong>3. Similar Icons-</strong> The app store 512×512 icon should be same as the app’s 57×57 icon. Even though there is no such direct rule in contract/agreement with Apple, its their store and they make the rules for reviews. If your app’s icon on phone and app store icon do not match, Apple will state having un-matching icons to reject the app.</p>
<p><strong>4. </strong><strong>Network Connectivity</strong><strong>-</strong> You must notify the user if network is unavailable. Just having the spinning busy icon display and a message saying “trying to connect” is against the guidelines. Proper message is needed at all the screens to convey clear message if network is not available after certain period of time. Many developers put their connectivity checks on Apple’s Reachability code, which is using that sample code for the wrong purpose. If you need to get data from a specific server, then try to download some data from that domain.</p>
<p><strong>5. &#8220;Free+Paid&#8221; apps- </strong>Apple reported to few developers that app may get rejected, if it contains visually disabled buttons, prompting the user to upgrade for the full version or displaying the price of full version in the Free version. So, iPhone developers must ensure that they follow all the rules.</p>
<p><strong>6. Consistent Button Images- </strong>If an iPhone developer wants to use Apple’s existing image for his button then see that functions are identical because you can use a standard button in a non-standard way if your app is providing a “immersive environment” so it is better to create your own button. If there are any variations with function then again Apple might reject the app.</p>
<p>It is always advisable for an iPhone developer to use their own custom buttons in the app</p>
<p><strong>7. iOS version support-</strong> If you plan on submitting and app which runs with 3.0 and higher versions, you should be sure that it works perfectly on all the versions from the iOS 3.0 to the most current version. Apple will test it with the latest version to see the potential of the app but if the app fails to prove itself Apple will definitely rejected your app.</p>
<p>8<strong>. Transactions outside The App Store-</strong></p>
<p>Apple do not allow developers to conduct any transaction/business outside the app store. In App purchases are the recommended way to implement these transaction. Recent announcement to allow outside payment transaction with certain restriction and Apple&#8217;s percentage take from money for the same is trickier and would take more time to settle down in business plan of apps sale.</p>
<p><strong>9. Private API:s</strong></p>
<p>Apple strictly reject apps which are implementing programs using Private APIs. Apple has scripts that can scan your app codes for violations. If you want to prevent app rejection from app store make sure you read the developer guidelines carefully before implementing any API marked private by Apple.</p>
<p><strong>10. Popovers-</strong></p>
<p>It is definitely not recommended to launch one popover from within another popover. The iPad Human Interface Guidelines clearly provides this information that only one popover element should be shown onscreen at a time.</p>
<p>There can be many more reasons behind Apple&#8217;s rejection of any iOS app. However, the list provides very obvious ones.</p>
<p>Mobisoft Infotech sincerely wish this post is helpful to all our developer community and prestigious clients to achieve great success with iOS apps launch.</p>
<p>If you have any suggestions/feedback, please send your inputs to info@mobisoftinfotech.com</p>
<p>&amp; for business enquiries : business@mobisoftinfotech.com</p>
<p>Thank you</p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/ySun5y_iDoc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/iphone/key-inputs-to-avoid-apples-ios-app-rejection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/iphone/key-inputs-to-avoid-apples-ios-app-rejection/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=key-inputs-to-avoid-apples-ios-app-rejection</feedburner:origLink></item>
		<item>
		<title>Mobisoft Infotech LLC along with Smarty-Ears empowering special kids with speech therapy iOS apps at Macworld 2011.</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/pNOkycpZaPQ/</link>
		<comments>http://www.mobisoftinfotech.com/blog/life-mobisoft/mobisoft-infotech-llc-along-with-smarty-ears-empowering-special-kids-with-speech-therapy-ios-apps-at-macworld-2011/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 00:21:22 +0000</pubDate>
		<dc:creator>Shailendra Sinhasane</dc:creator>
				<category><![CDATA[Life @ Mobisoft]]></category>
		<category><![CDATA[What's New!!]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[macworld]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[press release]]></category>
		<category><![CDATA[publication]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1411</guid>
		<description><![CDATA[Macworld Expo: San Francisco: Jan 27th, 2011. With superior expertise in iPhone and iPad apps development, Mobisoft infotech LLC is delivering a family of apps for kids with special needs. In collaboration with Smarty Ears, Mobisoft Infotech provided services to develop apps for speech therapists. Apps which can improve child&#8217;s language and speech skills by <a href="http://www.mobisoftinfotech.com/blog/life-mobisoft/mobisoft-infotech-llc-along-with-smarty-ears-empowering-special-kids-with-speech-therapy-ios-apps-at-macworld-2011/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Macworld Expo: San Francisco:</span></span></span><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><em> Jan 27</em></span></span></span><span style="color: #000000;"><sup><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><em>th</em></span></span></sup></span><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><em>, 2011</em></span></span></span><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">.</span></span></span></p>
<p><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">With superior expertise in iPhone and iPad apps development, Mobisoft infotech LLC is delivering a family of apps for kids with special needs. In collaboration with Smarty Ears, Mobisoft Infotech provided services to develop apps for speech therapists. Apps which can improve child&#8217;s language and speech skills by </span></span></span><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">helping children with communication difficulties. </span></span></span></p>
<p lang="en-US"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Mobisoft infotech will be showcasing their most recent released apps for Smarty-Ears at the Macworld Expo 2011 in San Francisco. </span></span></span><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><strong>Macworld 2011. </strong></span></span></span><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"> Newest app releases, “Articulate it!” is an application designed to help parents practice pronouncing sounds with their children</span></span></span></span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Articulation, language skills, and fluency are some of the areas in which we have developed apps in. Smarty-Ears is innovating Speech therapy with creative vision to enable therapists for improved practices and services. Mobisoft infotech with 110+ smartphone apps development experience, has been providing design and programming services for more than 5 app products on iPhone/iPad for speech therapists help. </span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Team achieved great accomplishments!! </span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Recognition from Apple users is evident when first app &#8211; &#8220;Sunny Articulation Test&#8221; was featured on Top #9 revenue generating app on iTunes.  Apps we developed have been featuring on &#8216;What&#8217;s Hot&#8217;, &#8216;New &amp; Noteworthy&#8217; and &#8216;Top paid&#8217; sections of Apple&#8217;s iTunes store. </span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">&#8216;Match2Say&#8217; app was featured on “New and Noteworthy” on iTunes. At the same time on 11/07/2010 Match2Say was the top #5 Best selling education app.</span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Shailendra Sinhasane, Managing Director of this startup company founded it in early 2009 during his Computer Science Master&#8217;s program from University of Houston. Starting with application &#8216;MyIphonics&#8217;, they created educational apps with audio, object images and game playing integration. One of the first few apps developed by them &#8216;SocialFlyr&#8217; for creating digital flyers to share across Facebook and Twitter social media was amazingly hit and topped to #20 paid lifestyle based app on iTunes store. </span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">The company has been able to grow at astounding rate, from 3 people team to over 55 smartphone development consultants family.  Mobisoft Infotech has great plans to </span></span></span></p>
<p><span style="color: #262626;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">take a leap forward into &#8216;Web + Mobile + Social&#8217; integrated solutions. </span></span></span></p>
<p><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">For more information about smartphone services visit: </span></span><span style="color: #000080;"><span style="text-decoration: underline;"><a href="http://www.mobisoftinfotech.com/"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">http://www.mobisoftinfotech.com</span></span></a></span></span></p>
<p><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Or contact: business@mobisoftinfotech.com</span></span></p>
<p><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><br />
</span></span></p>
<p><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">References:</span></span></p>
<ol>
<li>
<p lang="en-US"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Macworld 	2011 </span></span></span><span style="color: #000080;"><span style="text-decoration: underline;"><a href="http://www.macworldexpo2011.com/"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">http://www.macworldexpo2011.com</span></span></a></span></span></span></span></span></p>
</li>
<li>
<p lang="en-US"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">MyIphonics 	app </span></span></span><span style="color: #000080;"><span style="text-decoration: underline;"><a href="http://myiphonics.com/Home.html"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">http://myiphonics.com/Home.html</span></span></a></span></span></span></span></span></p>
</li>
<li>
<p lang="en-US"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Learn 	Alphabet Sounds With MyIphonics </span></span></span><span style="color: #000080;"><span style="text-decoration: underline;"><a href="http://bit.ly/9P35Sz"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">http://bit.ly/9P35Sz</span></span></a></span></span></span></span></span></p>
</li>
<li>
<p lang="en-US"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Mobisoft 	Infotech iPhone technical share </span></span></span><span style="color: #000080;"><span style="text-decoration: underline;"><a href="http://bit.ly/g1PCkf"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">http://bit.ly/g1PCkf</span></span></a></span></span></span></span></span></p>
</li>
<li>
<p lang="en-US"><span style="line-height: 35px; font-size: 35px; letter-spacing: -1px;"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">New 	Company Combines Technological Advancements With Speech And Language 	Sciences. </span></span></span><span style="color: #000080;"><span style="text-decoration: underline;"><a href="http://bit.ly/bK8vqH"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">http://bit.ly/bK8vqH</span></span></a></span></span></span></p>
</li>
<li>
<p lang="en-US"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;">Match2Say 	featured on iTunes </span></span></span><span style="color: #000080;"><span style="text-decoration: underline;"><span style="font-family: Helvetica, Arial, sans-serif;"><span style="font-size: small;"><a href="http://bit.ly/bZM8l1">http://bit.ly/bZM8l1</a></span></span></span></span></span></span></span></p>
</li>
</ol>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/pNOkycpZaPQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/life-mobisoft/mobisoft-infotech-llc-along-with-smarty-ears-empowering-special-kids-with-speech-therapy-ios-apps-at-macworld-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/life-mobisoft/mobisoft-infotech-llc-along-with-smarty-ears-empowering-special-kids-with-speech-therapy-ios-apps-at-macworld-2011/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=mobisoft-infotech-llc-along-with-smarty-ears-empowering-special-kids-with-speech-therapy-ios-apps-at-macworld-2011</feedburner:origLink></item>
		<item>
		<title>Android OS 2.3 (Gingerbread) is coming with NFC technology</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/vYQoYXf565Q/</link>
		<comments>http://www.mobisoftinfotech.com/blog/android/android-os-2-3-gingerbread-is-coming-with-nfc-technology/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 04:12:02 +0000</pubDate>
		<dc:creator>ritesh.patil</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[What's New!!]]></category>
		<category><![CDATA[android OS 2.3]]></category>
		<category><![CDATA[Digital wallets]]></category>
		<category><![CDATA[Gingerbread]]></category>
		<category><![CDATA[NFC]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1407</guid>
		<description><![CDATA[Near field communication (NFC) is one of the latest technologies in mobile phones. This is nothing but a chip with short range high-frequency wireless communication technology that enables quick exchange of data between devices in the vicinity of about 10 cm distance.  So you can virtually transfer data between two successive NFC enabled devices.  NFC <a href="http://www.mobisoftinfotech.com/blog/android/android-os-2-3-gingerbread-is-coming-with-nfc-technology/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Near field communication (NFC) is one of the latest technologies in mobile phones. This is nothing but a chip with short range high-frequency wireless communication technology that enables quick exchange of data between devices in the vicinity of about 10 cm distance.  So you can virtually transfer data between two successive NFC enabled devices.  NFC can be used for various purposes. Since it is capable of receiving and transmitting data at the same time, it can function as a smart contact-less card and it will definitely bring digital wallet concept in existence in near future.</p>
<p>At the Web 2.0 conference, Google CEO Eric Schmidt said <strong>Nexus S </strong>is the first android phone coming with android OS 2.3(Gingerbread) with capability of NFC technology. Apple is said to be working on the technology as well to incorporate it to the <strong>iPhone 5</strong>.</p>
<p>How NFC can be useful for mobile users?</p>
<p>1. NFC can be used for payment at kiosks, ticketing, Internet or person-to-person.<br />
2. Tickets can be purchased, stored, and redeemed.<br />
3. Prepaid card can be stored in smartphones<br />
4. Coupons can be transferred to friends<br />
5. Shopping list can be collected from bags<br />
6. Electronic devices can be activated after purchase and warranties sent in. Or car keys,   house/office keys, hotel room keys can get replaced by NFC enabled smartphones.<br />
7. Secure access to buildings and PCs<br />
8. Inventory control with tags and readers<br />
9. Patient monitoring by keeping medical records on chip<br />
10. Mobile users can touch the NFC enabled devices to exchange the information and contact details.</p>
<p>A person can lose credit card, wallet or personal documents but there are less chances to miss Mobiles and if it happen so, just inform mobile service provider and you can easily stop misuse of your identity, credit card, mobile &amp; all personal information so called &#8220;<strong>Digital wallets</strong>&#8221; in one shot. User do not have to call 5 different customer service executive to stop credit card services.</p>
<p>By looking at above facts it looks NFC has promising potential in Mobile Future. Consider you check in at a shopping mall and you get to see the banners or campaign or offers with the your liking based on your behaviors of shopping. So it will be just a matter of booming your mobile devices anywhere(banners, photos, products etc) to get the information or perform transactions. <strong>Boom!!!</strong></p>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/vYQoYXf565Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/android/android-os-2-3-gingerbread-is-coming-with-nfc-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/android/android-os-2-3-gingerbread-is-coming-with-nfc-technology/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=android-os-2-3-gingerbread-is-coming-with-nfc-technology</feedburner:origLink></item>
		<item>
		<title>iPhone Local Notifications</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/C7NjvmF8QbI/</link>
		<comments>http://www.mobisoftinfotech.com/blog/iphone/iphone-local-notifications/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 16:00:02 +0000</pubDate>
		<dc:creator>Prasad Tandulwadkar</dc:creator>
				<category><![CDATA[iPhone - iPad]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[Local Notifications]]></category>
		<category><![CDATA[Notifications]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1386</guid>
		<description><![CDATA[Local notifications : Local notifications are used to notify user that application is having some updates, while application is not running in foreground. We can display an alert message or badge on application icon. Local notifications can play sound when alert message or badge is shown. We can use local notification to remind our daily <a href="http://www.mobisoftinfotech.com/blog/iphone/iphone-local-notifications/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><!-- p { margin-bottom: 0.21cm; } --><span style="font-size: medium;"><strong>Local notifications :</strong></span></p>
<p>Local notifications are used to notify user that application is having some updates,</p>
<p>while application is not running in foreground. We can display an alert message or badge on application icon.  Local notifications can play sound when alert message or badge is shown.</p>
<p>We can use local notification to remind our daily or monthly tasks at particular time like water plants, pay electricity bill, attend seminar , prepare for presentation etc. In these cases we can use local notification.</p>
<p>Create notification :</p>
<pre><span style="font-family: Menlo;"><span style="font-size: x-small;">- (</span></span><span style="color: #b80ca1;"><span style="font-family: Menlo;"><span style="font-size: x-small;">void</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">)scheduleNotification {</span></span>
<span style="color: #000000;">
</span><span style="color: #000000;"> </span><span style="color: #000000;"> </span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">[[</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UIApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">sharedApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">] </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">cancelAllLocalNotifications</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span>
<span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">	</span></span></span>
<span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UILocalNotification</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> notif = [[cls </span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">alloc</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">] </span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">init</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span>

<span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">fireDate</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> = [</span></span><span style="color: #538187;"><span style="font-family: Menlo;"><span style="font-size: x-small;">datePicker</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">date</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span>
<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">timeZone</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = [</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSTimeZone</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">defaultTimeZone</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">alertBody</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #cc2324;"><span style="font-family: Menlo;"><span style="font-size: x-small;">@"Reminder for you"</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span>
<span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">alertAction</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span><span style="color: #cc2324;"><span style="font-family: Menlo;"><span style="font-size: x-small;">@"Show"</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span>
<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">soundName</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UILocalNotificationDefaultSoundName</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span>
<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">applicationIconBadgeNumber</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #3d00d6;"><span style="font-family: Menlo;"><span style="font-size: x-small;">1</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span>

<span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSDictionary</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> *userDict = [</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSDictionary</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">dictionaryWithObject</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">:</span></span></span><span style="color: #cc2324;"><span style="font-family: Menlo;"><span style="font-size: x-small;">@"Notification 	  text"</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">forKey</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">:</span></span></span><span style="color: #538187;"><span style="font-family: Menlo;"><span style="font-size: x-small;">kRemindMeNotificationDataKey</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span>

<span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">userInfo</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> = userDict;</span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">[[</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UIApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">sharedApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">] </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">scheduleLocalNotification</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">:notif];</span></span></span>
<span style="font-family: Menlo;"><span style="font-size: x-small;">[notif </span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">release</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></pre>
<pre><span style="font-family: Menlo;"><span style="font-size: x-small;">}</span></span></pre>
<p>Cancel any exiting local notification</p>
<pre><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">[[</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UIApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">sharedApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">] </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">cancelAllLocalNotifications</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span></pre>
<p><span style="color: #000000;"><span style="font-size: small;">Allocate and initialize </span></span><span style="color: #7332a8;"><span style="font-size: small;">UILocalNotification </span></span><span style="color: #000000;"><span style="font-size: small;">object </span></span></p>
<pre><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UILocalNotification</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> *notif = [[cls </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">alloc</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">] </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">init</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span></pre>
<p><span style="color: #000000;"><span style="font-size: small;">Set fire date and timezone. Fire date is date and time when system should deliver the notification. Date is calculated depending on timezone specified.If we do not specify timezone then it will take GMT as default time zone.</span></span></p>
<pre><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">fireDate</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> = [</span></span><span style="color: #538187;"><span style="font-family: Menlo;"><span style="font-size: x-small;">datePicker</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">date</span></span></span><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.timeZone = [NSTimeZone </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">defaultTimeZone</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span>
</pre>
<p><span style="color: #000000;"><span style="font-size: small;">We can control alert message displayed when notification is delivered by setting alertBody and alert action by setting alertAction.</span></span></p>
<pre><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">alertBody</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #cc2324;"><span style="font-family: Menlo;"><span style="font-size: x-small;">@"Reminder for you"</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"> </span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">alertAction</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #cc2324;"><span style="font-family: Menlo;"><span style="font-size: x-small;">@"Show"</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span></pre>
<p><span style="color: #000000;"><span style="font-size: small;">We can also specify sound to be played when notification is delivered by setting soundName and also specify badge number on application icon by setting applicationIconBadgeNumber.</span></span></p>
<p><span style="color: #000000;"> </span></p>
<pre><span style="color: #000000;"> </span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">soundName</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UILocalNotificationDefaultSoundName</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"> </span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.applicationIconBadgeNumber = </span></span></span><span style="color: #3d00d6;"><span style="font-family: Menlo;"><span style="font-size: x-small;">1</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span></pre>
<p><span style="color: #000000;"><span style="font-size: small;">We can also pass custom data with notification by adding it into dictionary. We can add dictionary to notification using userInfo property. </span></span></p>
<p><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span></p>
<pre><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSDictionary</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> *userDict = [</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSDictionary</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">dictionaryWithObject</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">:</span></span></span><span style="color: #cc2324;"><span style="font-family: Menlo;"><span style="font-size: x-small;">@"Notification text"</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">forKey</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">:</span></span></span><span style="color: #538187;"><span style="font-family: Menlo;"><span style="font-size: x-small;">kRemindMeNotificationDataKey</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">userInfo</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = userDict;</span></span></span></pre>
<p><span style="color: #000000;"><span style="font-size: small;">Here we are passing notification text as custom data.</span></span></p>
<p><span style="color: #000000;"><span style="font-size: small;">In case if we want to increase icon badge number we can get current badge number by using.</span></span><span style="color: #000000;"> </span></p>
<pre><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">[[</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">UIApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">sharedApplication</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">] </span></span></span><span style="color: #000000;"><span style="font-family: Times New Roman,serif;"><span style="font-size: small;">applicationIconBadgeNumber </span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">];</span></span></span></pre>
<p><span style="color: #000000;"><span style="font-size: small;">If you want to repeat notification then you can set following property to required calendar unit.</span></span><span style="color: #000000;"> </span></p>
<pre><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">repeatInterval</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #410d80;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSMinuteCalendarUnit</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">OR</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">repeatInterval</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = NSHourCalendarUnit;</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">OR</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">repeatInterval</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSDayCalendarUnit</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span>
<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">
OR</span></span></span>

<span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">notif.</span></span></span><span style="color: #7332a8;"><span style="font-family: Menlo;"><span style="font-size: x-small;">repeatInterval</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;"> = </span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">NSWeekCalendarUnit</span></span></span><span style="color: #000000;"><span style="font-family: Menlo;"><span style="font-size: x-small;">;</span></span></span></pre>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/C7NjvmF8QbI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/iphone/iphone-local-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/iphone/iphone-local-notifications/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=iphone-local-notifications</feedburner:origLink></item>
		<item>
		<title>Smart-phones and mobile commerce (mCommerce) trends</title>
		<link>http://feedproxy.google.com/~r/BlogMobisoftInfotech/~3/5kzuvycq1us/</link>
		<comments>http://www.mobisoftinfotech.com/blog/whats-new/smart-phones-and-mobile-commerce-mcommerce-trends/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 09:09:47 +0000</pubDate>
		<dc:creator>ritesh.patil</dc:creator>
				<category><![CDATA[What's New!!]]></category>
		<category><![CDATA[barcode]]></category>
		<category><![CDATA[commerce]]></category>
		<category><![CDATA[Coupons]]></category>
		<category><![CDATA[Location based services]]></category>
		<category><![CDATA[mCommerce]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile banking]]></category>
		<category><![CDATA[Mobile Local Search]]></category>
		<category><![CDATA[Mobile Marketing]]></category>
		<category><![CDATA[Mobile Payments]]></category>
		<category><![CDATA[Mobile Ticketing]]></category>
		<category><![CDATA[QR code]]></category>
		<category><![CDATA[smartphones]]></category>

		<guid isPermaLink="false">http://www.mobisoftinfotech.com/blog/?p=1387</guid>
		<description><![CDATA[Remember the days everyone used to carry coins and used to write cheques for money transaction. Recent years those coins and cheques are replaced by credit cards(plastic money). Those credit cards you now use instead are about to be replaced by your personal and always connected mobile phone. People are promoting the use of mobile <a href="http://www.mobisoftinfotech.com/blog/whats-new/smart-phones-and-mobile-commerce-mcommerce-trends/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Remember the days everyone used to carry coins and used to write cheques for money transaction. Recent years those coins and cheques are replaced by credit cards(plastic money). Those credit cards you now use instead are about to be replaced by your personal and always connected mobile phone. People are promoting the use of mobile phones as “<strong>digital wallets</strong>” that enable people to make real-world purchased using their phones.</p>
<p><strong>Smartphones are changing the way business happen</strong></p>
<p>Mobile and wireless communication technologies are being adopted with unprecedented velocity. Two-thirds of the world’s population, 4 billion people, has a mobile phone with a predicted 5 billion subscribers by the end of this year. The worldwide Smartphone market grew 50 percent year over year in the last quarter of 2010, and a recent study by Juniper Research forecasts that nearly half of all mobile phone users worldwide will pay by mobile for digital and physical goods by 2014. Hundreds of touch based tablets are likely to add in mobile devices list which will increase the mobile subscribers.  Then add to that base a new legion of IP addressable machines as subscribers – your car, fridge, games console, TV and so on.</p>
<p>Retail shopping is about to undergo a major change with consumers using their mobiles to not only pay for goods but to use them to scan bar codes and bring up on their mobiles internet information about the products to help them make a choice. Everything from the supply chain to the customer leaving the store with the product can be traced providing firms with detailed research they could not have dreamed possible. Customers will be able to get special offers before going into stores or be tempted to pop by as they enter the area in which the store is located.This brings exciting new opportunities for a sector that has been hard hit by the recessionary climate of the last few years.</p>
<p><strong>In near 3 years every business have to have mobile application or site to sustain in market to compete with other products which are growing fast with  mobile technologies and trends.</strong> The trick is to develop a mobile presence that has several factors: intuitive navigation, accurate search capability, pleasing design, enticing merchandising and easy, frictionless checkout.</p>
<p>Here are couple of mobile commerce trends that every business has to adopt in near future for growth:</p>
<p><strong>1. Mobile Marketing</strong></p>
<p>The mobile apps allows users to browse for product, their details, reviews and they can compare the prices with other similar products. Ex. User can browse for specific outfit and “try on” an outfit by snapping a picture with the iPhone’s camera. It then let’s you share your outfits with friends on Facebook and Twitter. All of the features really add to the shopping experience, but most importantly, consumers are able to buy and bid on what they like.</p>
<p>They are investing more time and money into creative ways to reach consumers via their mobile phones with campaigns that enhance the brand identity or the shopping experience.</p>
<p><strong>2. Mobile Local Search &amp; Location based services</strong></p>
<p>Location Based Services are being used to improve better communications, stronger ties and interactions among individuals and their communities, neighborhoods, local merchants, cities, local news, etc.</p>
<p>The biggest trend for now is Foursquare like apps, which allows people to “check-in” through their phones and reveal geographic locations they go to. Retailing stores are taking advantage of this user location information by providing coupons and freebies to those who check-in often or first.</p>
<p><strong>3. Mobile bargain hunting</strong></p>
<p>International players are combining forces to improve shopping apps on mobile. Smartphone apps support barcode/QR code scanner features. When a user scans the barcode on any product, app searches for other on-line or local retailers that might sell it cheaper. Once user scan the code user can see all the details about product in fraction of seconds. There are couple of bargain Hunting site that updates daily with Internet shopping deals and coupons. Users checking prices on items using these shopping apps automatically get shown any on-line deals for that item from the consolidated database of products.</p>
<p>The fact that consumers are now able to find better deals via their mobile device is a win-win for everyone. It seems that shopping and saving money, just got a whole lot easier.</p>
<p><strong>4. Mobile Ticketing/Coupons</strong></p>
<p>2D barcode or QR code technology is becoming quite popular for a mobile device for user to purchase a ticket for a movie, travel, music concerts, sports events etc., and store the ticket on their mobile device for redemption at a later date.</p>
<p>Pointing the phone’s camera at a bar code instantly takes a consumer to extended product information, a website, video content, maps, social media, and contact information or even to dial a phone number. The consumer does not need to type a thing to immediately engage with a product or brand.</p>
<p>The regions of Western Europe and North America are also growing at a rapid pace with a projected 15 billion <strong>Mobile Ticketing</strong> transactions by year 2014.</p>
<p><strong>5. Mobile Payments &amp; Banking</strong></p>
<p>The two main methods that mobile device users are currently utilizing for <strong>Mobile Payment </strong>are – remote digital; purchasing (Barcodes/SMS) tickets for movies, travel, music concerts, sports events etc., (popular in Europe).</p>
<p>The other method is remote physical; POS-purchasing, such as consumer items, clothing tickets, books, electronic equipment, CD’s etc., (popular in China, Far East &amp; Japan). This user base may be as high as 2.5 billion worldwide, by year 2014. Also <strong>mobile banking</strong> allows customers to access their bank account information and perform financial transactions such as purchasing stocks, remittance of money to other account etc.</p>
<p>New 3G &amp; 4G Smartphone devices allow user to get information about the product on a single finger tip and allow user to complete the transitions in few seconds. PayPal recently unveiled its two-click smartphone payment system called Mobile Express Checkout.</p>
<p>In future 4G systems with more security, higher speeds, higher capacity, lower costs, and more intelligent infrastructures and devices will help realize m-commerce applications. With improved wireless security and privacy through data encryption and user education, on the one hand, and with the wide deployment of 4G systems, on the other hand, it is anticipated that m-commerce will become the most dominant method of conducting business transactions.</p>
<div><span style="font-family: Verdana, Calibri, 'Myriad Pro', Myriad, 'Trebuchet MS', Helvetica, Arial, sans-serif;"><br />
</span></div>
<img src="http://feeds.feedburner.com/~r/BlogMobisoftInfotech/~4/5kzuvycq1us" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mobisoftinfotech.com/blog/whats-new/smart-phones-and-mobile-commerce-mcommerce-trends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mobisoftinfotech.com/blog/whats-new/smart-phones-and-mobile-commerce-mcommerce-trends/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=smart-phones-and-mobile-commerce-mcommerce-trends</feedburner:origLink></item>
	</channel>
</rss>

