0

I was just wondering if there is a way to read the internal implementation of Apple's API on ios? For example, is there a way I can see how "setNeedsDisplay()" function of UIView is implemented internally? I think this will help me understand how the code actually works.

1 Answers1

1

The source code to the Apple frameworks is not publicly-available. You can disassemble the framework code, but unless you're really good with assembly language, you probably won't learn much.

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Mark Bessey
  • 19,598
  • 4
  • 47
  • 69