-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPMViewController.h
27 lines (21 loc) · 923 Bytes
/
PMViewController.h
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
//
// PMViewController.h
// UIPopoverMenuController - 测试
//
// Created by WeeverLu on 14-1-24.
// Copyright (c) 2014年 Kinth. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PMViewController : UIViewController
@property (strong, nonatomic) IBOutlet UILabel *resultLbl;
@property (strong, nonatomic) IBOutlet UITextField *tableField;
@property (strong, nonatomic) IBOutlet UITextField *dateField;
- (IBAction)iPadTableBarButtonAction:(UIBarButtonItem *)sender;
- (IBAction)iPadDateBarButtonAction:(UIBarButtonItem *)sender;
- (IBAction)iPadTableButtonPressAction:(UIButton *)sender;
- (IBAction)iPadDateButtonPressAction:(UIButton *)sender;
- (IBAction)iPhoneTableBarButtonAction:(UIBarButtonItem *)sender;
- (IBAction)iPhoneDateBarButtonAction:(UIBarButtonItem *)sender;
- (IBAction)iPhoneTableButtonPressAction:(UIButton *)sender;
- (IBAction)iPhoneDateButtonPressAction:(UIButton *)sender;
@end