Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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