Tumgik
ktrkathir · 3 months
Text
Bakthi 🕉️ Calendar subscription for all Apple users.
Click below link in Apple device and subscribe the calendar on your device. Subscribe Calendar
View On WordPress
0 notes
ktrkathir · 1 year
Text
How to add Watermark on UIImage in swift
Learn Swift programming
Hello, Today we are going to learn how to add watermark(Text/ Sign) on UIImage. This is a simple way to add text in particular position. Implement this function in UIImage extension #01 Implement Add Text on Image // MARK: - Adding texts/ Water mark on image func addTextOnImage(drawText text: String, atPoint point: CGPoint? = nil) -> UIImage { let textColor = UIColor.white let textFont =…
View On WordPress
0 notes
ktrkathir · 1 year
Text
How to compressed an UIImage in Swift
Learn swift programming today.
Hello, Here we are going to learn how to compress our UIImage and then how to convert Base64 String. Let’s implement one by one. #01 Compress Image Data /// Compress image to Data /// - Returns: Compressed Data of UIImage. public func compressedImageData() -> Data? { return self.resized(sizeReduce: 0.5)?.jpegData(compressionQuality: 0.3) } Here I implemented a function of CompressedImageData…
View On WordPress
0 notes
ktrkathir · 3 years
Text
iOS 15, iPadOS 15 Compatible devices. - WWDC 21
iOS 15, iPadOS 15 Compatible devices. – WWDC 21
Then iPadOS
Tumblr media
View On WordPress
0 notes
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 · 3 years
Video
youtube
How to Change colour of image while runtime in Swift We don't need to use same template type of images for different colours. We can use RenderingMode API to present with tintColor.
0 notes
ktrkathir · 3 years
Text
Find UDID, Serial number, IMEI number for iPhone or iPad
Find UDID, Serial number, IMEI number for iPhone or iPad
Quick demo to find UDID for iPhone and iPad.
Here is a easy way to find UDID of your iOS Devices. A few simple steps to find UDID, serial number, IMEI number of your iPhone or iPad.
If you bought a new iPhone or iPad means How to find your unique id of UDID, serial number by using Mac.
You can share this video to someone and get UDID of their iOS devices.
I have Mac
[youtube…
View On WordPress
0 notes
ktrkathir · 3 years
Video
youtube
Design a screen using ScrollView + StackView In this Swift tutorial. I discussed about How to Design a screen using UIScrollView embed with UIStackView and with AutoLayout Constraints.
1 note · View note
ktrkathir · 3 years
Video
youtube
Text to Speech using AVKit with customisation options designed in UI In this Swift tutorial. I implemented Text to speech application using AVKit. Here I used NSLinguisticTagger, AVSpeechSythesizer, AVSpeechUtterance and Implemented User interface for customisations.
0 notes
ktrkathir · 4 years
Text
Explanation: @escaping
Here I discussed about escaping closures. Syntax, Implementation and Use cases.
Create async functions with @escaping closures.
Definition: you can write @escaping before the parameter’s type to indicate that the closure is allowed to escape.
View On WordPress
0 notes
ktrkathir · 4 years
Video
youtube
Explanation: Tuples What is Tuples ? Where we can use Tuples ? and How to implement ? Tuples is helps to return a different types of values in single function.
0 notes
ktrkathir · 4 years
Video
youtube
Explanation: UserDefaults iOS How to save and retrieve data using UserDefaults in Swift. UserDefaults is an important data storage instance in Swift. Here we can store Any data type values by using Key value pair.
0 notes
ktrkathir · 4 years
Video
youtube
Local Notification with Attachments in Swift Attach a gif on Local Notification (UNUserNotification) and build a perfect iOS Application. And also we can attach Image, Video, and Audio. Notification will react based on the attachment extension.
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 Action button for Local notification Implementing a Action button for Local Notification (UNUserNotification) and build an iOS Application | Xcode 11 | Swift 5.2 No real device. No Certificate. No Provisioning profile.
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