-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
fix SIMULATE_WEB_RESPONSE not imported #449 #450
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
// | ||
|
||
#import "ViewController.h" | ||
|
||
#import "AppDelegate.h" | ||
#import <AsyncDisplayKit/AsyncDisplayKit.h> | ||
#import "SupplementaryNode.h" | ||
#import "ItemNode.h" | ||
|
@@ -70,8 +70,8 @@ - (void)viewDidLoad | |
{ | ||
NSLog(@"ViewController is not nil"); | ||
strongSelf->_data = [[NSArray alloc] init]; | ||
[strongSelf->_collectionView performBatchUpdates:^{ | ||
[strongSelf->_collectionView insertSections:[[NSIndexSet alloc] initWithIndexesInRange:NSMakeRange(0, 100)]]; | ||
[strongSelf->_collectionNode performBatchUpdates:^{ | ||
[strongSelf->_collectionNode insertSections:[[NSIndexSet alloc] initWithIndexesInRange:NSMakeRange(0, 100)]]; | ||
} completion:nil]; | ||
NSLog(@"ViewController finished updating collectionView"); | ||
} | ||
|
@@ -81,7 +81,7 @@ - (void)viewDidLoad | |
}; | ||
|
||
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), mockWebService); | ||
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ | ||
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(4 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While I'm not opposing to the change at this line, I'm interested in your reasons. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do not know why need last dispatch, current behavior is when click push, the collection node/view will display after 2 second, then pop after another 2s (thus 4 total) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To make minimal change, let's revert the change here (i.e change it back to 4 seconds). |
||
[self.navigationController popViewControllerAnimated:YES]; | ||
}); | ||
#endif | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the comments here and a couple of lines below to use "collectionNode"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with SIMULATE_WEB_RESPONSE, compiler will give error saying collectionView undefined, this change will follow the property to use collectionNode
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I understand the change here. I was suggesting to update the logs to use "collectionNode":
NSLog(@"ViewController finished updating collectionNode")
andNSLog(@"ViewController is nil - won't update collectionNode")
. Sorry for the confusion :)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, if we keep using 2s it will cause crash at L115 ASCollectionLayout, because poping VC and layout happen at same time; So I keep 4.
{
...
ASDisplayNodeAssertNotNil(_layout, @"Collection layout state should not be nil at this point")
...
Let me know if it's potential bug and how to fix it. Thanks.