Вы можете отправить сообщение по NSNotification
Добавить наблюдателя в SKScene
,
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(selectorMethod:)
name: @"NOTIFICATION_NAME"
object:nil];
Форма почтового уведомления UIViewController
,
NSDictionary *userInfo = @{ @"Key": @"Value" };
[[NSNotificationCenter defaultCenter] postNotificationName: @"NOTIFICATION_NAME" object:nil userInfo:userInfo];