|
Iphone有一個很強大的功能,就是消息傳送. 用法如下: [[NSNotificationCenter defaultCenter] postNotificationName:<#(NSString *)aName#> object:<#(id)anObject#> userInfo:<#(NSDictionary *)aUserInfo#>] 這是在object中廣播消息. 接收object用下面的方法接收: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateCounty:) name:COUNTY_PICKUP object:nil]; 這個函數為object注冊了一個函數來響應消息的來到.這個函數就是updateCounty: 接收object要取消監聽,當這個object release時. [[NSNotificationCenter defaultCenter] removeObserver:self name:COUNTY_PICKUP object:nil]; |

