-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMultithreadingViewController.h
More file actions
38 lines (28 loc) · 1.12 KB
/
Copy pathMultithreadingViewController.h
File metadata and controls
38 lines (28 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// MultithreadingViewController.h
// iOSFundamentalConcepts_iPad
//
// Created by Oliver Solano on 8/4/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "MasterViewController.h"
@interface MultithreadingViewController : UIViewController<SubstitutableDetailViewController> {
UIToolbar *toolbar;
UIImageView *imageViewNormal;
UIImageView *imageViewDispatch;
UIImageView *imageViewDispatch2;
UIImageView *imageViewDispatch3;
}
@property (nonatomic, strong) IBOutlet UIToolbar *toolbar;
@property (nonatomic, strong) IBOutlet UIImageView *imageViewNormal;
@property (nonatomic, strong) IBOutlet UIImageView *imageViewDispatch;
@property (nonatomic, strong) IBOutlet UIImageView *imageViewDispatch2;
@property (nonatomic, strong) IBOutlet UIImageView *imageViewDispatch3;
-(IBAction)selectNormalButton:(id)sender;
-(IBAction)selectDispatchButtonThread11:(id)sender;
-(IBAction)selectDispatchButtonThread1:(id)sender;
-(IBAction)selectDispatchButtonThread2:(id)sender;
-(IBAction)selectDispatchButtonRunAllOnThread1:(id)sender;
-(IBAction)reset:(id)sender;
@end