Skip to main content

Posts

iphoneonEDGE: Ios 6 Vs Jelly Bean !!!

iphoneonEDGE: Ios 6 Vs Jelly Bean !!!
Recent posts

Ios 6 Vs Jelly Bean !!!

Well , Well , Well this gonna be a boom because ios 6 going to be launched by Apple in this summer fall so Google is ready with Jelly Bean and Window os 7 is already creating impression by their outlook and quick and easy usage to his user's. As the facebook is getting famous day by day they are also planned to keep these things to as much near as possible so each os is giving default Facebook Access to the os . The work of user is getting less as the phone are getting more intelligence. You don't need to add a new address in your contact book if user already exists in your Social network. The os will itself fetch the data from social site and add that user in your contact book. So apple come with each time a new initiation and lesson for other mobile os. So far ios 6 is going to be a BOOOOOOM and here are some of the newly added feature by Apple in ios6. Maps IOS 6  drops Google's mapping technology in the form of an inhouse Apple solution, while  window phon

Retina display iphone !!!

HI , Just completed one more app and also learned one more thing so i am here to share with you guys. RETINA DISPLAY  - This is the good thing that apple introduce it with iphone 4 and your apps quality increase many times when you see the same app on the other platform,But how it is implemented and what are the parameters for the developer end we have to concern about . i)First you have to create the bigger image with the name@2x.png and double the size you want to use and please keep the DPI 326 . ii)Now convert it in the half of its size and the image name will be name.png with the actual size and with DPI 163. These will help you to put the retina display in your ios apps.

Find a person using his addressbookrecordID only !!!

HI All, Today i implement a good thing that i think i should post on the blog i make a function by whcih you can display address book full information just using the  RecordID of a user in addressbook here is the function by which you can just fetch all information about a person if you have only his recordID from address book .     ABAddressBookRef ab = ABAddressBookCreate ();     ABPersonViewController *navCtlr = [[ ABPersonViewController alloc ] init ];          ABRecordRef person = ABAddressBookGetPersonWithRecordID (ab, RecordID );      navCtlr . displayedPerson = person;      navCtlr . addressBook = ab;     navCtlr. allowsEditing = YES ;     [[ self navigationController ] pushViewController : navCtlr  animated : YES ]; this will open the controller that will have full information against the record id of that particular user. Thanks,

dateFromString returns nill!!!

HI , This is called a good beginning - when i was working on a issue i stuck out on a issue when i try to convert a string in  to NSDATE and first i thought i doing some wrong thing but after doing some R & D i got this function always returns -nill value either you are giving any format ,Firstly i tried to give a nslocale but here it is also failed so then i got a technical answer of apple regarding this function and then try it on the lower os but still i failed so .I can say i get to know a bad function in the ios 4.2 . Here is the link of the technical doc regarding the query - Apple technical doc and if you want to try some more by your hand then try new string format . by the way i tried it in these ways [ outformatter setDateFormat : @ "MMM dd, yyyy" ] ; [ outformatter setDateFormat : @ "MMM d, yyyy" ] ; [ outformatter setDateFormat : @ "MMM dd, YYYY" ] ; some time it gives error on small year alphabet. Finally what i got a nonworking

The helpful things for developers !!!

Guys ,, It is very hard when some thing new task has been assigned to you and don't have a clue to do it so i think why shouldn't i start posting here some important link or sample code snippets so that who are searching for any thing may get help so after this blog guys i will start share some technical things via this blog .And as i said i always appreciate the support so support me . THANKS, BALRAJ,

Apple 's gravity jack (iCloud) is here !!!

Hi Guys , Now the sir Steve job prove that no one is compete with the apple when it comes to new feature and venture .When apple proudly announce the iCloud it give the freedom to user wherever they are  they always get their important data be shared on the air so that when they got device they can get their data back on to the new device when they will got sync with the icloud .The good thing is that apple launch this new feature with the iCloud developer api,so that the guys who are developers they can explore the thing more and more and present the best thing to the users.And apple is not stop here with the ios 5 they also put some more important API so that the developer they are working with the ios they can explore the things mroe i.e apple new ios5 will come with the twitter framework in built so that you have to call jus some api and the you will get the things done in couple of minutes .I am also waiting for the new ios5 so that we can explore it more

AIRPLAY has been launched !!!

Guys , now keep you feet up to rock on .Apple has been launched the airplay with the ios 4.2 for ipad,iphone ,ipod touch devices now you can roam any where in room with the live streaming with your favorite videos,photos etc via your apple tv using Netflix.There are many apps (natively )that were providing all things but now we can do that thing programmatically and ios 4.2 is coming with it default enabled in media player framework . Thanks Balraj,