ShujatAli
ShujatAli

Reputation: 1376

IOS can i integrate scenekit or spritekit with single view application

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

Answers (1)

Knight0fDragon
Knight0fDragon

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

Related Questions