Texture icon indicating copy to clipboard operation
Texture copied to clipboard

Smooth asynchronous user interfaces for iOS apps.

Results 149 Texture issues
Sort by recently updated
recently updated
newest added

### Sample Project Here is a link to the sample project that demonstrates the issue: https://github.com/jeffdav/TextureTest ### Summary I have an `ASEditableTextNode` subclass that implements `calculateSizeThatFits`. When I call `setNeedsLayout`...

Xcode 14 is throwing a warning about hang risk due to priority inversion.

like: NSMutableAttributedString - (void)addAttribute:(NSAttributedStringKey)name value:(id)value range:(NSRange)range; - (void)addAttributes:(NSDictionary *)attrs range:(NSRange)range; code: ` -(void)loadTextButton { NSString *text = _model.comment == nil ? _model.text : [NSString stringWithFormat:@"%@ %@", _model.text, _model.comment]; //text NSMutableAttributedString...

**UI Hanging Issue while using html string** DispatchQueue.global(qos : .background).async { guard let data = htmlTemplate.data(using: .utf8) else { return nil } guard let attributedString = try? NSMutableAttributedString( data: data,...

We are seeing a lot of crashes in our Crashlytics. About 11k crashes, 9k users are affected. The information states that it crashes only on iOS 17. On all devices,...

I wanted to create text that have white background with corner radius and shadow around it, but it's not working, so how to do it? actually there are plenty workaround...

I am able to demonstrate my issue with this simple example. I have a `ASTableNode` which shows attributed strings. These will have images in them via `NSTextAttachment`. These images will...

Hello, I modified the code in the CustomCollectionView Demo here, hoping to achieve the preload function. But running will keep call `- (void)collectionNode:(ASCollectionNode *)collectionNode willBeginBatchFetchWithContext:(ASBatchContext *)context` method to add new...

Swift does not support @abstract and other directives, leading to quick reference documentation problems in Swift code. Example: This PR updates the ASDisplayNode.h documentation comments and adds information for some...

### Description A crash occurs before displaying the node. ### Reproduce code I created new project and in the ViewController, added "displayNode" and set a frame for it. 1. Create...