We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After upgrading from 2.x to 3.0 following issue encounters when applying ASImageNodeTintColorModificationBlock:
convenience init(withTitle title: String, titleImage: UIImage?, badge: UIImage?) { self.init(); iconNode.image = titleImage.withRenderingMode(.alwaysTemplate); iconNode.imageModificationBlock = ASImageNodeTintColorModificationBlock(.white); // app crashes iconNode.style.preferredSize = CGSize(width: 44, height: 44); }
Debugger output: #0 0x0000000101116a88 in thunk for @escaping @callee_guaranteed (@guaranteed UIImage, @unowned ASPrimitiveTraitCollection) -> (@owned UIImage?) () #1 0x0000000102d5dfc4 in +[ASImageNode createContentsForkey:drawParameters:isCancelled:] ()
App crashed with EXC_BAD_ACCESS (code=1, address=0x30)
Any suggestions? Tried to put the block into mainthread but without success. It doesnt seems to be a threading issue.
The text was updated successfully, but these errors were encountered:
@CR34L Ever got this fixed?
Sorry, something went wrong.
No branches or pull requests
After upgrading from 2.x to 3.0 following issue encounters when applying ASImageNodeTintColorModificationBlock:
Debugger output:
#0 0x0000000101116a88 in thunk for @escaping @callee_guaranteed (@guaranteed UIImage, @unowned ASPrimitiveTraitCollection) -> (@owned UIImage?) ()
#1 0x0000000102d5dfc4 in +[ASImageNode createContentsForkey:drawParameters:isCancelled:] ()
App crashed with EXC_BAD_ACCESS (code=1, address=0x30)
Any suggestions? Tried to put the block into mainthread but without success. It doesnt seems to be a threading issue.
The text was updated successfully, but these errors were encountered: