Swif tutorial – Send email with attachment in swift

Intro to tutorial on how to send email with attachment in swift  In this tutorial, we are going to learn how to send email with attachment from our iOS app which we will made using swift language. We are using xcode version 10 for this tutorial. So please follow below steps to learn how to […]

Swif tutorial – Send email with attachment in swift Read More »

Animate uilabel using CATransition animation

Animate UILabel using CATransition Animations plays an important role in mobile app, as an app with animation looks more appealing with a cool design. We can animate any control inherited from UIView class in iOS SDK using different methodologies or classes provided within the iOS SDK. In this tutorial, we will learn how to animate

Animate uilabel using CATransition animation Read More »

iOS App Localization: Change app language and app design layout from inside of the app without changing device language

iOS App Localization iOS app localization, the term is almost self explanatory to most of the mobile developers. If you are not aware of app localization then with app localization, it means that an app ability to support multiple languages. Since the majority of people in this world speaks and understand their country native language

iOS App Localization: Change app language and app design layout from inside of the app without changing device language Read More »

How to add video as background in IOS SDK

In this post, we will learn how to add video as background in our iOS application. To achieve this, we can use AVPlayer class. Let’s us start, first create a new project with single view application and name it “BackgroundVideo-Demo”. Steps to add video as background in objective c Open your ViewController.m file and create

How to add video as background in IOS SDK Read More »

UITapGetureRecognizer in IOS

UITapGesturRecognizer, what is that. You touch screen of your smartphones, in technical terms it is known as gesture. There are different types of gesture API’s available to IOS developers UITapGetureRecognizer In this post, we will cover UITapGestureRecognizer and learn how to use it in our iOS app.Apart from UITapGestureRecognizer we have UIPanGestureRecognizer and UIrotationGestureRecognizer. Let

UITapGetureRecognizer in IOS Read More »

Change image tint color programmatically in swift

How to change image tint color programmatically in swift In this post, we will learn how to change image color in swift. Below is the code snippet, that will change image tint color in swift language. The code is self explanatory in itself, first we will get the image as template image from the corresponding

Change image tint color programmatically in swift Read More »