Skip to content

Instantly share code, notes, and snippets.

@toshi0383
Created August 10, 2014 10:26
Show Gist options
  • Save toshi0383/8983085113809481dace to your computer and use it in GitHub Desktop.
Save toshi0383/8983085113809481dace to your computer and use it in GitHub Desktop.
特定のsubviewを取得する ref: http://qiita.com/toshi0383/items/8db81cd8d4d750e8d75f
UITableView *view = [[UITableView alloc] init];
view.tag = 1;
[superView addSubview: view];
UIView *subView = [superView viewWithTag: 1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment