3

Does the iPhone SDK have support for Grand Central Dispatch, to allow us to take advantage of the multiple cores in the new iPad's CPU?

JustSid
  • 25,168
  • 7
  • 79
  • 97
Jason
  • 14,517
  • 25
  • 92
  • 153
  • 1
    Not to mention, it could also improve performance on single core chips, so you should use it before and after. – Nektarios Apr 28 '11 at 19:58

1 Answers1

7

Yep, since iOS 4.0 there is GCD support in iOS. And the normal threading API (pthread and NSThread) is available since iOS 2.0

JustSid
  • 25,168
  • 7
  • 79
  • 97