© 2023 Hashnode
#objective-c
In this blog post, you'll learn how you can create a framework that executes code automatically when the framework gets initialized as part of the app startup. This can be useful for frameworks that w…
A timer is a class used to perform any task after a specific time interval. Timers are super handy in Swift for scheduling tasks with a delay or scheduling repeating work. In this article, we are goin…
Hello, fellows! Writing native code is intimidating for some, however moving network requests to native modules seems to increase the performance of the app. This idea was inspired by Ram Narasimhan's…
Introduction With Swift getting more and more popular, stable, and reliable. It's kind of doesn't make sense to start a project with Objective-C. In my case, I'm learning Objective-C because we're mai…
We will read a method that has two arguments. For this purpose, we will write a sample program to call [fileManager fileExistsAtPath: isDirectory:]. We will also use FRIDA's REPL to get the method pointer differently. Sample code: int ma…
Core Audio is a framework by Apple for handling audio on its platforms (macOS, iOS, etc.). It contains many high-level, mid-level, and low-level services, each providing different levels of abstraction depending on the task being performed.…
Intro I am beginning this series to share my vast knowledge of one of the most important Microsoft Windows Security features and how you can build layers of basic and advanced security on it to protec…
Tutorials are great. We all love them and they help so much. But always double-check code you learn to write from a tutorial because there is no guarantee that they are free from bugs or even complete. Some authors post a disclaimer while o…
What you should know about ARC in old good Objective-C In the last couple of days, I was searching more on memory management in iOS. It was a kind of a hard topic for me to understand in Swift. There…