magnify
Home Archive for category "iOS Programming"
formats

Facebook Bringing the “Like” Button to Mobile Apps Officially

Facebook has officially allowed mobile app developers to build an official Facebook Like button in the apps.   Facebook’s statement is: • Starting today we will no longer approve custom like actions. Apps that currently use a custom like action must migrate to use the built-in like action in the next 90 days. We have

Read More…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Apple: will soon be banning the use of UDID

According to AllThingsD, in responding to the recent suspected case of leaked UDIDs, Apple spokeswoman Natalie Kerris has claimed that: “The FBI has not requested this information from Apple, nor have we provided it to the FBI or any organization. Additionally, with iOS 6 we introduced a new set of APIs meant to replace the

Read More…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Get the Model Name of the iOS Device

Apple does not provide an NS function for getting the device model. However, the following code can achieve task:   #include <sys/types.h>  #include <sys/sysctl.h> – (NSString *)deviceName {        size_t size;      // get the size of the returned device name      sysctlbyname(“hw.machine”, NULL, &size, NULL, 0);       // Allocate

Read More…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments