#define keyPath(objc,keyPath) @(((void)objc.keyPath,#keyPath))
一般用在填寫觀察者模式中的屬性字符串
[self.p1 addObserver:self forKeyPath:keyPath(類名,屬性名) options:NSKeyValueObservingOptionNew context:nil];
#define keyPath(objc,keyPath) @(((void)objc.keyPath,#keyPath))
一般用在填寫觀察者模式中的屬性字符串
[self.p1 addObserver:self forKeyPath:keyPath(類名,屬性名) options:NSKeyValueObservingOptionNew context:nil];