The Objective-C runtime is a runtime support library provided with an implementation of the Objective-C language. Its API allows dynamically creating and configuring classes at runtime, as well as introspecting existing classes, methods, properties, and method implementations.
3
votes
0answers
218 views
UIScrollView Category utility function for auto sizing contentSize
I wanted a utility function on UIScrollView to automatically size the contentSize based on the content inside the scrollView. How is this?
...
4
votes
1answer
3k views
Generic class for displaying UIAlertView / UIAlertController on iOS
To address backwards compatibility for UIAlertView, I have come up with an interface that would seem to work for both iOS ...
4
votes
1answer
380 views
Dynamically setting unknown properties of a subclass from parent class in Objective-C
I'm doing my best to explain how this works, but it's pretty confusing and lengthy. Let me know if there's something I can do to clarify.
I'm building a class that models a custom Plist and sets its ...