[[NSNotificationCenter defaultCenter] postNotificationName:@"TapNewProduct" object:self.productID];
(oder)bessere Art und Weise Daten mit userinfo NSNotificationCenter in iOS
NSDictionary *dict = @{@"productID":self.productID};
[[NSNotificationCenter defaultCenter] postNotificationName:@"TapNewProduct" object:nil userInfo:dict];
Welche bessere Methode von oben zwei ist?
Ihre Frage ist nicht klar, so dass Sie fragen müssen, was Sie genau machen wollen. – user3182143