Fix ASLayoutSpecPlayground:ViewController:toggleVisualization

This commit is contained in:
Huy Nguyen
2016-03-29 00:04:32 -07:00
parent 495a4a00b7
commit 0e7edd184a
3 changed files with 8 additions and 9 deletions

View File

@@ -55,11 +55,10 @@
#pragma mark - ASLayoutableInspectorNodeDelegate
- (void)toggleVizualization:(BOOL)toggle // FIXME: this doesn't work currently
- (void)toggleVisualization:(BOOL)toggle
{
NSLog(@"shouldVisualizeLayoutSpecs:%d", toggle);
[self.node shouldVisualizeLayoutSpecs:toggle];
[self.view setNeedsLayout];
[self.node setShouldVisualizeLayoutSpecs:toggle];
}
@end