17 lines
434 B
Objective-C
17 lines
434 B
Objective-C
//
|
|
// SaySomethingViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/28.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
@interface SaySomethingViewController : BaseViewController
|
|
@property (weak, nonatomic) IBOutlet UITextView *wordTextFeild;
|
|
- (IBAction)submmitButton:(id)sender;
|
|
@property(nonatomic,strong)UILabel *plachoderlabel;
|
|
@property(nonatomic,strong)UILabel*textNumber;
|
|
@end
|