DSA icon indicating copy to clipboard operation
DSA copied to clipboard

iOS小集

Open lefex opened this issue 6 years ago • 1 comments

// 同时重写属性的set和get方法,需要使用 @synthesize 
@synthesize city = _city;

@property (nonatomic, copy) NSString *city;

- (void)setCity:(NSString *)city {
    _city = city;
}

- (NSString *)city {
    return _city;
}

lefex avatar Apr 02 '19 02:04 lefex

咱们如果改了pod的某个库,记得在pod库代码合入后。把主工程的这个库也update一下,然后把最新的pod.lock提上来。这样别人就知道版本改变了,直接执行pod install即可,不需要执行pod update。

lefex avatar Apr 02 '19 12:04 lefex