Reputation: 1376
I am trying to integrate any gaming kit (like scenekit or sprite kit) inside my utility based single view application , so is it possible to integrate any game kit with single view application what is the approach to start integrating game using objective c/swift. i can develop simple games using UIKit framework, but i want to try more interesting things in my apps. so what is the best option to integrate gaming in single view applications.
Thanks for your advice
Upvotes: 1
Views: 810
Reputation: 16827
To answer this, Yes you can. All it takes is adding a view to your view controller, giving it the custom SKView
class, then inside of your view controller code, use the view that is attached with the SKView
class to present the scene that you want to be working with.
Upvotes: 1