I've been teaching myself Objective-C and I wanted to start creating projects that don't use ARC to become better at memory management and learn how it all works. I've been attempting to build and run applications, but I'm not really sure where to start as modern iOS development is used with Swift and memory management is handled.
Is there any way to create modern applications that use Objective-C, UIKit, and not use ARC?
You will most likely want to search through the Documentation Archive for documents discussing memory. For Objective-C and Cocoa, the Advanced Memory Management Programming Guide is a good place to start.