- (void)postNotificationName:(NSString *)notificationName
object:(id)notificationSender
有人能幫我理解上面方法中的object
參數嗎?'postNotificationName:object:`中的'object'參數有什麼作用?
我用
[[NSNotificationCenter defaultCenter] postNotificationName:@"Downloadfinished"
object:self];
和
[[NSNotificationCenter defaultCenter] postNotificationName:@"Downloadfinished"
object:nil];
他們都在我的情況下工作。但我想明白這個論點的作用和我應該傳遞的內容。
的可能重複的[如何使用NSNotificationcenter的對象屬性(http://stackoverflow.com/questions/4312338/how-to-use-the-object-property-of-nsnotificationcenter) –