Corina FerenczforCorina's Blogcorinaferencz.hashnode.net·May 15, 2022Moving Network Requests to Native Modules: A GuideHello, 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 talk about performance in React Native at Chain R...Discuss·61 likes·272 readsTHW Mobile Apps
Toddforhacklemoretheonlyrealtodd.hashnode.net·Dec 7, 2019Beware of YouTube TutorialsTutorials 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 others do n...Discuss·2 likes·131 readsC
Nafeez AhmedforiOS Development Blogsnafeez.hashnode.net·Dec 27, 2022Ultimate guide on Timer in SwiftA 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 going to cover the following things: How to schedule ...Discuss·2 likes·60 readsios app development
Marco EidingerforSwifty Tech by Marco Eidingermarcoeidinger.hashnode.net·Jan 31, 2023Automatically run Swift code when your framework gets initializedIn 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 want to run code without requiring the app develope...Discuss·1 like·438 readsSwift
Nafeez AhmedforiOS Development Blogsnafeez.hashnode.net·Dec 27, 2022Ultimate guide on Timer in SwiftA 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 going to cover the following things: How to schedule ...Discuss·2 likes·60 readsios app development
Corina FerenczforCorina's Blogcorinaferencz.hashnode.net·May 15, 2022Moving Network Requests to Native Modules: A GuideHello, 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 talk about performance in React Native at Chain R...Discuss·61 likes·272 readsTHW Mobile Apps
Hassan ElDesoukyforHassan ElDesoukyhassaneldesouky.hashnode.net·Oct 12, 2021Effective Objective-C: Getting Familiar with Objective-CIntroduction 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 maintaining legacy code at my company Instabug which ...Discuss·896 readsLanguagesiOS
Fernando UrbanoforAzurda's blog azurda.hashnode.net·Feb 22, 2021FRIDA: Objective-C hook n+1 argumentsWe 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 main(int arg...Discuss·234 readsObjective C
Philip RaderforPhilip Raderpjrader1.hashnode.net·Feb 11, 2021Getting Started with Audio Queues in Core AudioCore 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. One servi...Discuss·221 readsApple
Olorunfemi DavisforMy Dev Expressodavis.hashnode.net·Dec 23, 2019Getting started with Windows Credential Provider and WinLogon Part 1Intro 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 protect single and domain-joined Windows computers and s...1337DOMINATOR228 and 2 others are discussing this3 people are discussing thisDiscuss·975 readsWindows
Toddforhacklemoretheonlyrealtodd.hashnode.net·Dec 7, 2019Beware of YouTube TutorialsTutorials 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 others do n...Discuss·2 likes·131 readsC
Hassan ElDesoukyforHassan ElDesoukyhassaneldesouky.hashnode.net·Jul 4, 2019iOS Memory Management in Under 6 MinutesWhat 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. Therefore, I decided to go a little deeper in old good ...Discuss·72 readsiOS