• Stars
    star
    8
  • Rank 2,092,457 (Top 42 %)
  • Language
    Swift
  • Created about 5 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

we will learn how to detect a part of text from a string in swift 5. We will assign our string to UILabel using attributedText property of UILabel, as we want text to be of different colour's in order to let user know which part of text is tap-able to user. For example, in sign up page of our we have to show a label for terms and conditions and privacy policy, on tap of terms and condition user will be shown T&C page and when user tap on privacy policy, he will be navigated to Privacy Policy page. In order to achieve this requirement, we will use UITapGesture and NSRange.

More Repositories

1

Localization_to_Arabic_laguage_From_Inside_App-Tutorial

In this video, We will learn how to localize iOS app in swift 4 without changing the device language.With localisation what we mean an iOS app that support multiple languages. Feature of this video tutorial: 1) User can change app language from inside of app. 2) App language will be independent of iOS device language. 3) App layout will be changed from left to right (LTR) to right to left (RTL) without letting user to restart or open the app in case of Arabic language support. 4) Learn about semanticContentAttribute property of iOS.
Swift
17
star
2

ParallaxScroll_IOS

Code to use parallax scroll effect in IOS application.
Objective-C
16
star
3

API-integration-using-alamofire-in-swift-5-and-json-parsing-using-codable

In this tutorial, we will learn how to integrate Alamofire networking pod to get data from an API and parse JSON reponse using codable protocol
Swift
11
star
4

PulseAnimation-Swift

In this tutorial, we will learn how to create circular pulse animation as shown in maps around user current location. We will add similar pulse animation as shown in map application's to our UIImageView, where a circular pulse originating from centre of our image and going outward with fade effect.
Swift
11
star
5

CircularProgressView-Tutorial

Do you have requirement of showing progress as a circular progress bar You will search for third part libraries for circular progress view written in swift but you can create one for yourself i.e. your own circular progress view
Swift
9
star
6

Pagination-Swift4-ios-tutorial

Pagination is approach where you fetch data in pages, for example you have 500 records on your server database then if you bring all 500 in one go then it will take time to load all data. For make it more smooth we can bring 20 records at a time until we bring all records from server. The request to load more records to the UITableView will gets called when user scroll down to bottom of UITableView.
Swift
8
star
7

MVVM-DesignPattern-iOS

MVVM design pattern implementation in iOS
Swift
4
star
8

AutocompleteSearch

Tutorial in swift 4 where we learned how to create Autocomplete search in swift 4 and pass the result to detail screen. Watch video here: https://youtu.be/Z_2HONmrR5Q
Swift
4
star
9

Swift-Tutorial-How-to-create-custom-UIView-class-With-XIB

In this video tutorial, we will learn how to create custom UIView class with xib in swift. We will design user interface for out custom class in xib and our custom class is subclassing UIView class. Since, there is no direct option for creating custom UIView class with xib in swift, so we will showcasing how to create custom uiview class with xib in swift
Swift
4
star
10

CATransition-Example

we will learn about animations in iOS, though you can use lightweight UIViewAnimation's but CATransition provides a more control to you over the animation. CATransition animation, has various properties like type of animation and subtype. You can also specify animation speed in CATransition. It provides more control to the developer as this animation works on layer of the UIView. We will create demo project, which demonstrate how t o use CATransition animation in a shopping cart like user interface.
Swift
4
star
11

SendMailAttachment

we are going to learn about how to send an email programmatically in iOS app development. We will also learn how to add attachment to email programmatically using swift language.
Swift
4
star
12

Calendar

Custom calendar written in swift horizonta scrol usefull for check in check out style
Swift
2
star
13

LocalNotificationSwift5-Tutorial

In this video, we will learn how to add local notification to our iOS app in swift and is part 2 of our local notification video series in swift. We will schedule local notification to get fired up at a particular date using UNCalendarNotificationTrigger class. Also we will implement UNUserNotificationCenterDelegate methods in order tp show notification when app is in foreground and get the info or user-info associated with notification.
Swift
2
star
14

WKWEbView-Tutorial

In this Video, we will learn how to use WKWebView so that we can load html web page inside our app. As UIWebView is deprecated since ios 8.0 is launched, we now need to use WKWebView comes with webkit framework. What we learn in this video: 1) How to load page in WKWebView 2) Hide and show activity indicator when page starts to load and hide indicator view when page stops loading, for this we will use isLoading property of WKWebView with the help of KVO (Key Value Observing) as isLoading property is KVO compliant and won't work if we use it directly. 3) Advantages of using WKWebView instead of UIWebView.
Swift
2
star
15

AASlidingTopTabBar

Swift
2
star
16

GooglePlaceAPISearchTutorial

Tutorial showing how to integrate Google place search APi in swift
Swift
1
star
17

UIRefreshControl-Swift4-Tutorial

Code showed how to add UIRefreshControl to UITableView and implment pull to refresh feature in your app using swift4 language.
Swift
1
star
18

ImageDownLoadExample

Down image from url in swift
Swift
1
star
19

AutoResizing-UITextView

In this tutorial we will learn, how to auto resize UITextView based upon the text displaying in UITextView or text set to the UITextView. The tutorial is written in swift language.
Swift
1
star
20

GoogleSign-Swift-Tutorial

We will learn how to integrate google sign in SDKs in order to allow iOS app user's to use there google account to get authenticated in our app thus by passing the old password enabled sign in or login.We will follow step by step guide to integrate login using google in iOS.
Swift
1
star
21

AddPaddingToUITextField-swiftProgrammatically

UITextField is the basic control used for getting input from user. In this video, we will how to add padding to UITextField. There are 4 border styles associated with UITextField 1) Round rect : UITextfield border gas round corners, default padding is given by iOS 2) Bezel: UITextField has border as bezel, default padding is given by iOS 3) Line: Border with line, no default padding is given by iOS 4) None: No border is given to UITextField, no default padding is given by iOS After watching this video, you will learn following things 1) How to create and custom UITextField class 2) Override default UITextField methods in order to give padding to UITextField, with border style, line and None.
Swift
1
star
22

ReusableComponent

Want to use re-usable component or re-usable UIViews in swift as your app required same UIView in multiple screens. In this video, we will learn how to create re-usable component or re-usable UIView in swift. We will create a simple profile header viewing then use the same in Home screen and profile detail screen. Also, we will navigate to edit profile screen when user tap on Edit Profile button. Video URL: https://youtu.be/XFGPuEe2TUM
Swift
1
star
23

UItableViewRow-Inserion-deletion

we will learn how to insert or delete a particular row into UITableView without reloading whole UITableView while inserting and deleting cell or UITableView rows.
Swift
1
star