感动草丛

文章
5
资源
0
加入时间
2年10月17天

cell上按钮的点击事件

.h@property (assign,nonatomic) SEL cancleBtnAction;@property (assign,nonatomic) id target;.m- (void)layoutSubviews{ [super layoutSubviews]; [self.cancleBtn addTarget:self.target action:s

hibernate JPA 使用懒加载时代理对象

hibernate延迟加载代理对象实际对象读取方式 public static <T> T deproxy (T obj) { if (obj == null) return obj; if (obj instanceof HibernateProxy) { ...