您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ViewController.h 732B

123456789101112131415161718192021222324252627
  1. //
  2. // ViewController.h
  3. // iFreshDemo
  4. //
  5. // Created by zhang on 16/10/8.
  6. // Copyright © 2016年 taolei. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ViewController : UIViewController
  10. @property (weak, nonatomic) IBOutlet UITextField *WeightTF_one;
  11. @property (weak, nonatomic) IBOutlet UITextField *WeightTF_two;
  12. @property (weak, nonatomic) IBOutlet UITextField *WeightTF_three;
  13. @property (weak, nonatomic) IBOutlet UITextField *WeightTF_four;
  14. @property (weak, nonatomic) IBOutlet UITextField *dataTextFiled;
  15. @property (weak, nonatomic) IBOutlet UITextField *ForWeight_TF;
  16. @property (weak, nonatomic) IBOutlet UITextField *ForKcal_TF;
  17. @property (weak, nonatomic) IBOutlet UITextField *ForTotalKcal_TF;
  18. @end