This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* The scanner definition for COOL. | |
*/ | |
/* | |
* Stuff enclosed in %{ %} in the first section is copied verbatim to the | |
* output, so headers and global definitions are placed here to be visible | |
* to the code in the file. Don't remove anything that was here initially | |
*/ | |
%{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ZSDoubleCascadeTableView.m | |
// | |
// Created by ZhuShengqi on 25/9/15. | |
// Copyright © 2015 9tong. All rights reserved. | |
// | |
#import "ZSDoubleCascadeTableView.h" | |
@interface ZSDoubleCascadeTableView () <UITableViewDelegate, UITableViewDataSource> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ZSDoubleCascadeTableView.h | |
// | |
// Created by ZhuShengqi on 25/9/15. | |
// Copyright © 2015 9tong. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@class ZSDoubleCascadeTableView; |