Criteria meet for Amazon Kindle Apps
Amazon Kindle Apps Asset Type Description Specifications Icon A representative icon for display on the desktop of the mobile device after app installation 114 x 114px PNG with transparent background Thumbnail A larger version of the icon image (this…
App Testing Service on Amazon
App Testing Service on Amazon Q: What is the Amazon App Testing Service? The Amazon App Testing Service is a tool you can use to test your Android app prior to submitting it to Amazon. This free service tests your app for common issues that can block it…
Account and User Permissions on Amazon
Q: How do I start selling games and apps on Amazon? On the Amazon Apps & Games Developer Portal, click the Create an Account button. The portal is a self-service tool that will guide you through account creation. After creating an account and…
Major Features of IOS 8
Apple took the wraps off iOS 8 at its WWDC keynote.we are compiling some of the truly great new features that Apple introduced with iOS 8. Extensions One feature in Android that a lot of iOS users have been clamoring for was ability to apps to interact…
iOS 7.1.1 Update Touch ID Issues
Apple’s iOS 7.1.1 update was released to help correct issues with the iPhone 5S’ Touch ID fingerprint scanner, and reports claim that it has done just that, improving not only the sensor’s accuracy, but also its response time. However,…
Singleton Class sample
//.h file should contain + (MySingleton *)sharedInstance; //.m file must declare as below + (MySingleton *)sharedInstance { static dispatch_once_t once; static MySingleton *instance; dispatch_once(&once, ^{ instance = [[MySingleton alloc]…
IOS -7.1 Features
IOS -7.1 Features This update contains improvements and bug fixes, including: • CarPlay ◦ iOS experience designed for the car ◦ Simply connect your iPhone to a CarPlay enabled…
iOS 7 – Key Features for Developers
iOS 7 – Key Features for Developers New Frameworks iOS 7 introduces the following new frameworks Sprite Kit – The Sprite Kit provides a hardware accelerated animation systems for 2D or 2.5D games. It also provides graphics rendering and animation, sound…
Tips to Loading image from a URL to UIImage object
Tips to Loading image from a URL to UIImage object Load image pointed by URL, for example, http://mycodetips.com/images/image0.jpg, using NSURL, NSURLRequest, and NSURLConnection NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:…
Tips for Converting UIColor object to NSData
Tips for Converting UIColor object to NSData Converting a UIColor object, view.backgroundColor, to an NSData object /* 1. Archive into NSData object */ NSData *data = [NSKeyedArchiver archivedDataWithRootObject:view.backgroundColor]; [dict setObject:data…