iOS 5.x with more features for users and developers

Apple’s latest version of iOS number is 5.x . iOS 5 having more than 200 user features (source: apple.com). For developers updated SDK with 1,500 new APIs and powerful new development tools. Now developers can take advantage of iCloud Storage, Newsstand Kit, Core Image, GLKit, twitter and new Game Center APIs.

iOS - Apple's mobile operating system

iOS - Apple's mobile operating system

iOS 5 comes up with list of features for developers:-

1) iCloud Storage :- Now we can save our application data (files and key values) in Cloud. And it will automatically sync the changes  in all configured  devices (iPhone, iPad and Computers…..). Get more details about this here http://developer.apple.com/icloud/index.php

2) Automatic Reference Counting (ARC) :- ARC for Objective-C makes memory management job for compiler. Enabling ARC with new Apple Low Level Virtual Machine (LLVM) compailer we will never need to type retain or release again. While  reducing crashes and memory leaks. The compiler has a complete understanding of our objects and releases eash object the instant no longer used or over. So apps run as fast as with better performance.

3) Location simulation :- Now we can test location based features in our apps without leaving Simulator. We can now select from present location and routes within the iOS 5 Simulator and pick a custom latitude and longitude with accuracy while running app.

4) Twitter Integration :- We can now take advantage of twitter integration. Now we can send a tweet from built-in apps with few lines of code (easy to tie into single sign-on service). Which includes URL shortening, attaching current location, character count and attach photos on Twitter.

5) Notification Center :-Notification Center provides nice way to display and mange app notifications without interruption our users. Notification Center in iOS 5 builds on the existing notification system, so existing local and push notufucations works fine.Now push notifications Provisioning made built in Xcode.

6) New Instruments :- Not only ARC, iOS 5 SDK includes several new instruments including time profiler with CPU strategy which gives you a new way to view time profiler data, as well as system trace, network activity and network connections instruments.

You can more details @ apple.com

HTML5 inputs and PhoneGap – iPhone and Android 2

In previous post we seen few HTML5 input type (Text, Email, URL and Number  ) and iOS keyboard type when we focus on the input.

Check with few more keyboard type in iOS and Android in this post : HTML5 inputs and PhoneGap – iPhone and Android

now <input type=”tel” name=”txtPhone”/>

input type tel

and finally, when I try with type=”range”. it is also working fine in iOS. for example

<input type=”range” name=”points” min=”1″ max=”10″ /> by default it is that input value set to 6 and when I try to enter alphabets and done.. it is removing that alphabets and set that value to 10. Even when I enter more the max number for example 12 it is reset to 10.

input typew rangeAndroid 2.2 and later versions support HTML5 input type number and tel

Android HTML5 input type number and telin this above screenshot show android keyboard type when we set type to number or tel. like this

<input type=”number” /> –Left

<input type=”tel” /> — Right

Check with few more keyboard type in iOS and Android in this post : HTML5 inputs and PhoneGap – iPhone and Android

Windows Phone also will support HTML5 input type and it will automatically changes keyboard layout. I am unable to add screenshot windows phone 7.5 mango for now. Because I am having problem with WDDM version.

HTML5 input types more details here http://www.w3schools.com/html5/html5_form_input_types.asp

HTML5 inputs and PhoneGap – iPhone and Android

In this post I am going to talk about HTML5 controls in PhoneGap. Not only PhoneGap we can also use this input in mobile based web site too.

HTML5 is the next generation of HTML. In one word I can say HTML5 make web more Rich.

PhoneGap is popular Cross platform framework in mobile world. it will support for all top mobile OS. Few weeks before there release beta version for Windows Phone 7.5 Mango.

I captured few screenshots from iOS, we can see   different  keyboards for input types Email,URL, Number and tel

If we add normal input  it will display like this,

HTML code:

<input type=”text” name=”txtName” />

Input type text

<input type=”email” name=”Email”/>

Input type email<input type=”url” name=”urlAddress”/>

Input type URL

<input type=”number” name=”txtNumber”/>

Input type number

Check with few more keyboard type in iOS and Android in this post : HTML5 inputs and PhoneGap – iPhone and Android 2

HTML5 input types more details here http://www.w3schools.com/html5/html5_form_input_types.asp

Follow

Get every new post delivered to your Inbox.

Join 109 other followers