First of all, thank you for your work, It saved me some hours of implementation ;)
Just to inform that there is a memory leak regarding the reorderDelegate.
public var reorderDelegate: SQReorderableStackViewDelegate?
should be declared with a weak ref
public weak var reorderDelegate: SQReorderableStackViewDelegate?
First of all, thank you for your work, It saved me some hours of implementation ;)
Just to inform that there is a memory leak regarding the reorderDelegate.
public var reorderDelegate: SQReorderableStackViewDelegate?should be declared with a weak ref
public weak var reorderDelegate: SQReorderableStackViewDelegate?