Explore >> Select a destination


You are here

whackylabs.com
| | kenb.us
2.7 parsecs away

Travel
| | The interface for UIKit is the same between iOS and tvOS,but the behavior is a little different. The interaction on tvOS is distinctly different than iOS because tvOS doesn't offer direct in...
| | www.jessesquires.com
2.7 parsecs away

Travel
| | A few days ago I was (finally!) updating a project to use Swift 2.2 and I ran into a few issues when converting to use the new #selector syntax introduced by...
| | ashishkakkad.com
2.6 parsecs away

Travel
| | In Objective-C we are using a header file to create constant variables like as [code lang="obj-c"] // Objective-C #define APP_ALERT_TITLE "Objective-C Constant" [/code] Swift has new syntax to define the constant (#define) [code lang="obj-c"] // Swift let APP_ALERT_TITLE = "Swift Constants" [/code] Lets try Create a swift file with the constants [code lang="obj-c"] import Foundation ... Read more
| | wittchen.io
27.9 parsecs away

Travel
| Introduction Some time ago, Ive written an article about Test coverage report for Android application. It got some interest (many comments below article and many visits according to Google Analytics), so I decided to refresh this topic. Previously, Ive written instrumentation unit tests, which needed to be executed on a real device or an emulator. Its a good approach when you want to test functionalities strongly connected with the device. E.