Tumgik
#Code with ktrkathir
ktrkathir · 4 years
Video
youtube
Design Login screen in SwiftUI | How to make an iOS App
1 note · View note
ktrkathir · 4 years
Video
youtube
Basic design on SwiftUI Check my channel on YouTube and subscribe. Hi Friends, Learn SwiftUI from YouTube by my channel. Subscribe my channel and learn more and more.
1 note · View note
ktrkathir · 3 years
Text
Create Custom Shape in SwiftUI
Create Custom Shape in SwiftUI - Kathiresan Murugan
Hi Friends, In this tutorial I was explained about how to create a custom Shapes in SwiftUI. In SwiftUI some Shapes was provided by Apple. Like Circle, Rectangle etc. If you need to create a new custom Shapes to show on the screen. How? Here I have a solution for this question. Shape is the one of the Protocol in SwiftUI. So, We have to create Struct with conform of Shape Protocol. Here I…
Tumblr media
View On WordPress
0 notes
ktrkathir · 3 years
Text
Debug: Print class, function, line number swift
Debug: Print class, function, line number swift
Hi Guys, Here I created new Function to print message, class name, function name and line number. // Can call like. DebugPrint.message("Test") // Implementation enum DebugPrint { static func message(_ text: String, _ fileName: String = #file, _ function: String = #function, _ line: Int = #line) { print("\(text) \t fileName: \((fileName as NSString).lastPathComponent), function: \(function),…
View On WordPress
0 notes
ktrkathir · 4 years
Text
Daily Reminder Local Notification Swift 5.2
Daily Reminder Local Notification Swift 5.2
Implementing a Daily Reminder Local Notification (UNUserNotification) and build an iOS Application | Xcode 11 | Swift 5.2
No real device. No Certificate. No Provisioning profile.
Here I used UserNotification framework and implemented UNCalendarNotificationTrigger, DateComponents to set notification on every day at 12 pm.
View On WordPress
0 notes
ktrkathir · 4 years
Video
youtube
Implement Scheduled Local Notification | Xcode 11.5 | Swift 5.2.4 In this Swift tutorial. I discussed about Implementing a Scheduled Local Notification (UNUserNotification) and build an iOS Application | Xcode 11 | Swift 5.2
0 notes
ktrkathir · 4 years
Text
Simulate APNS Remote Notification on simulator iOS 13.5 and above | Xcode 11.5
Simulate APNS Remote Notification on simulator iOS 13.5 and above | Xcode 11.5
Hi EveryOne!
In this Swift tutorial. I discussed about how to trigger a push notification to Simulator iOS 13.5 and above | Xcode 11.5 and above.
No Certificate. No ProvisioningProfile. No Third party websites. No .p12 file required.
Terminal command to send Push notification to simulator.
Syntex:
$ xcrun simctl…
View On WordPress
0 notes
ktrkathir · 4 years
Text
Side menu implementation Swift
Side menu implementation Swift
A Step by step tutorial about Integration and Implementation of Left sideMenu and build an iOS App
Here I Implemented tableView with SideMenu SDK to Xcode project using Swift Package Manager.
We can design our own ViewController to Left slide menu and also customise what we need.
Integration [youtube=https://www.youtube.com/wa…
View On WordPress
0 notes
ktrkathir · 4 years
Text
Design UIScrollView using AutoLayout in Storyboard | Xcode 11
Design UIScrollView using AutoLayout in Storyboard | Xcode 11
Hey Everyone,
A Step by step tutorial about How to Design in UIScrollView using AutoLayout Constraints in Storyboard to build the App. 
Dont write a single line of code.
Fully dynamic scrollView content sizes and also allow support for Accessibility features.
Design static design using UIScrollView
View On WordPress
0 notes
ktrkathir · 4 years
Text
Customise ActivityIndicator | Swift 5.2 | Xcode 11
Customise ActivityIndicator | Swift 5.2 | Xcode 11
Hi Buddy,
In this swift tutorial I discuss the topic of Customise ActivityIndicator out of your UIViews. This will make your code much more readable, and keep those UIViewController small.
You can use this LoadingIndicator for any other Views. That makes sense to users what was going on right now in this UI Element.
Once you implemented it will help for your entire project. Because of…
View On WordPress
0 notes
ktrkathir · 4 years
Text
Dark mode for iOS 10 and above
Dark mode for iOS 10 and above
Hi Friend,
Here I implemented a dark mode support for iOS 10 and above.
Follow my step by step video and learn quickly
Dark mode support for iOS 10 and above
View On WordPress
0 notes
ktrkathir · 5 years
Text
Location based Augmented Reality using ARKit in iOS
Location based Augmented Reality using ARKit in iOS
Hi Friends,
Its time to learn ARKit in iOS. Yes. I have start learning of ARKit in iOS.
Scope: Showing information for particular location coordinates. Like below image
Using ARKit and CoreLocation Framework‘s. Its possible to archive.
I have set of places like
var places: [Place] = [Place(name: "L", lati: 11.053791, lngi: 76.990920, id: 1),Place(name: "R", lati: 11.051854, lngi: 76.991360, id:…
View On WordPress
0 notes
ktrkathir · 5 years
Text
Check your network connection using Network.framework in iOS 12.0 and above.
Check your network connection using Network.framework in iOS 12.0 and above.
HI Developer,
When ever we are calling url on iOS. Before we will check is we are connected to network or not. Many ways in iOS to detect a network connection state. Here I have tried. by Network.Framework
Class for Checking reachability connection
import Network /// Network connection class NetworkConnection { /// Dispatch queue private var queue = DispatchQueue(label: "Monitor", qos: .default,…
View On WordPress
0 notes
ktrkathir · 4 years
Text
CLLocationManager Refactor | Xcode 11 | Swift 5.2 | KtrKathir
CLLocationManager Refactor | Xcode 11 | Swift 5.2 | KtrKathir
Hi Buddy,
CLLocationManager Refactor | Core Location | Xcode 11 | Swift 5.2 | KtrKathir
In this swift tutorial I discuss the topic of LocationManager Refactor out of your UIViewController. This will make your code much more readable, and keep those UIViewController small.
This video Contains How to implement a LocationManager as a singleton class and fetch a location from where every you…
View On WordPress
0 notes
ktrkathir · 4 years
Text
Captcha Generator Swift Package
Captcha Generator Swift Package
Hi Friends,
As per comment of captcha Objective-C
Captcha generator swift
SwiftPackage Source code GitHub
Implementation
/// Captcha generator var captcha = CaptchaGenerator() captchaLabel.attributedText = captcha.generate()
/// Validation if captcha.isMatched(text: field.text ?? "") { // success }
– How to make an iOS App ktrkathir
View On WordPress
0 notes