-2

I am creating a POC in WatchKit and I found that I can use classes like OperationQueue, Set, Dictionary, Array, Data etc in my Watch App Extension.

Does anyone know if all the iOS frameworks are included in WatchOS also?

Axel Guilmin
  • 11,454
  • 9
  • 54
  • 64
Sukhpal Singh
  • 672
  • 1
  • 12
  • 31

1 Answers1

1

No; some classes are available on both platform and some are not.

Check the right column of the Apple documentation for the class you are interested in.

For example Dispatch is available on watchOS 2.0+ while UITableViewCell is not available on watchOS :

enter image description here

Axel Guilmin
  • 11,454
  • 9
  • 54
  • 64