Mobile Development

Currently browsing: Mobile Development
  • Sprite Kit VS Unity

     

    Sprite Kit and Unity are a game development tool for creating games. Both have their own good features for development. Unity provides both 2D and 3D development of games. Sprite kit provides 2D development of games. Unity was developed as a 3D engine, but it current versions provides full built-in 2D support as well.

    Which technology … Continue reading

  • What is Swift

     

    Swift

    Swift is a new programming language for iOS, watchOS, MacOS, and tvOS apps that build on the best of C & Objective-C, without of the constraints of C compatibility. Swift adopts safe programming patterns and adds modern features to more flexible, make programming easier, and more fun. Swift’s clean slate, backed by the much-loved Cocoa … Continue reading

  • Swift – Functions

     

    A function is a set of statements which organized together to perform a specific task. Functions are used to pass local and global parameter values inside the function calls.

    Function Declaration – Function declaration tells about a function’s name, return type, and parameters to the compiler.
    Function Definition – Function Definition represent the actual body … Continue reading

  • Swift – Generics

     

    Generic helps us to write code which is flexible, reusable functions and types which have a different type like Int, float, string etc. Generic reduces the duplication of code, code with generic is represented in an abstract manner.

    Generic is one of the new features that is present in the swift language.  In Swift language, Array … Continue reading

  • SENSORS IN ANDROID

     
    #Overview of Sensors
    The sensor is used for to monitor the three-dimensional device movement or any change in device environment. Those are measured the device motion, device orientation and different types of environmental conditions.
    A sensor is supposed to provide the high accuracy & clarity to provide the raw data.

    Ex.

    The game application uses the device gravity … Continue reading

  • Swift –Collection Types

     

    Collection Types

    Swift has three primary collection types, they are arrays, sets, and dictionaries, for storing collections of values. Arrays are ordered collections of values and  Sets are unordered collections of unique values. Dictionaries are unordered collections of key-value pair.

    Arrays, sets, and dictionaries in Swift are everytime clear about the types of values and keys that … Continue reading

  • Android Material Design

     
    What is Android Material Design?
    Google provides material design brings with it new, exciting ways to delight your users with a visually appealing Android app. But what is material design? Google introduced a material design that describes an interface that incorporates tactile surfaces, bold graphic design and also a fluid motion to create beautiful, intuitive experiences.Material … Continue reading