XXNibBridge icon indicating copy to clipboard operation
XXNibBridge copied to clipboard

Bridge xib file into another xib or storyboard

Results 16 XXNibBridge issues
Sort by recently updated
recently updated
newest added

In certain cases (collection views just being one of them), view initialization takes place within a `layoutSubviews` call. -[UIView layoutSubviews] does some evaluation of constraints and seems to keep its...

对外提供静态库和bundle,不能获取bundle里面的xib,怎么解决?能不能指定bundle? - (UINib *)nib { return [UINib nibWithNibName:self.nibid bundle:[self XXNibBundle]]; } - (NSBundle *)XXNibBundle { if ([[self class] respondsToSelector:@selector(nibBundle)]) { return [[self class] performSelector:@selector(nibBundle)]; } return nil; }

I use XXNibBridge and found tow tiny problem 1、view will creat twice,the first will release 2、XXNibBridge not compatible Masonry 在用XXNibBridge发两小问题 1、用了XXNibBridge嵌套的view会创建两次,第一次会被释放 2、用了XXNibBridge嵌套的view就不能再用Masonry来做约束

In XXNibBridge 2.3.0 version, create new constraints for the realView at instantiateRealViewFromPlaceholder(). It doesn't invoke setFd_collapsibleConstraints for updating collapsible constraints. So the view's collapse action goes wrong because of the...

NSLayoutConstraint @property (getter=isActive) BOOL active NS_AVAILABLE(10_10, 8_0); 是否考虑把active属性从placeholder view拷贝过去?

我想在storyboard中的tableviewController中拖入静态cell发现无法嵌入。 XXConvensionCell 继承了这个协议后。 我在storyboard中拖入一个tableviewController。然后把tableview类型改为 静态cell类型。 拖入一个cell,把此cell类名改为XXConvensionCell。 发现并未起作用。