AsyncDisplayKit icon indicating copy to clipboard operation
AsyncDisplayKit copied to clipboard

Smooth asynchronous user interfaces for iOS apps.

Results 26 AsyncDisplayKit issues
Sort by recently updated
recently updated
newest added

In first controller WEAK_SELF(weakSelf); JSHCCommentDeatilController *jvc = [[JSHCCommentDeatilController alloc] initWithModel:model]; jvc.callback = ^{ [weakSelf performSelector:@selector(doNetworkRequestForNewsDetail) withObject:nil afterDelay:0.5]; }; [self.navigationController pushViewController:jvc animated:YES]; In SEL doNetworkRequestForNewsDetail, if successed,the controller will reload the...

I implement the ASTableNode with cell contains html. I'm using a third-party UIView wrapped in a ASDisplayNode to display HTML(sometimes html is big and contains a lot of image). So...

The official documentation: ![image](https://user-images.githubusercontent.com/20868764/28050064-e05f250a-662d-11e7-8c6a-ab5fd74405e1.png) In the ASCellNode: ![image](https://user-images.githubusercontent.com/20868764/28050083-fde72244-662d-11e7-8b9c-e885c93a2b75.png) ![image](https://user-images.githubusercontent.com/20868764/28050098-1caa802c-662e-11e7-9d5d-42d35d7e2e22.png) If I don't set the preferredSize,the "ASWrapperLayoutSpec" code will run successful

![screen shot 2017-05-30 at 3 28 22 pm](https://cloud.githubusercontent.com/assets/20637671/26574744/b29fa830-454c-11e7-8620-e7870a09c0a1.png)

Dear Sir: ASDK is an excellent framework, I was in the project used UITableNode, I have learned that UITableNode is no reuse mechanisms. This makes my interface will shine called...