Muhammad Noman
Muhammad Noman

Reputation: 1576

cocos2d alternative in UiKit?

new in ios application development with uikit,can any one tell me what is alternative code of cocos2d replacScene In UiKit.used segue model but problem is i want use it programmatically like cocos2d. thanks.

Upvotes: 0

Views: 103

Answers (1)

Abhineet Prasad
Abhineet Prasad

Reputation: 1271

you can call the segue programatically by giving it an identifier and then using the following function

[self performSegueWithIdentifier:@"<segue identifier>" sender:<the sending view controller>];

Upvotes: 1

Related Questions