Results 2 issues of Harry

I find Snapkit can use like this: ``` let guide = UILayoutGuide() someView.addLayoutGuide(guide) guide.snp.makeConstraints { make in make.width.equalToSuperview() make.height.equalTo(100) make.top.equalToSuperview() } ``` Is it possible to set constraints on a...

你好,在使用你的框架时,发现如果对象的属性数组中是基础数据类型,如:NSString. 我该如何处理保存? ``` @interface Student : NSObject @property (assign, nonatomic) NSInteger num; @property (copy, nonatomic) NSString *name; @property (assign, nonatomic) NSInteger sex; @property (assign, nonatomic) NSInteger age; @property (copy, nonatomic)...