medicineView.frame = CGRectMake(15, 10, 290, medicineViewHeight - 10);
当medicineViewHeight = 0 的时候,系统 是无法显示 -10的,测试中 获得 高度是 10,识别成10了,因此 下次要注意设置高度可能的值了,
medicineView.frame = CGRectMake(15, 10, 290, medicineViewHeight - 10);
当medicineViewHeight = 0 的时候,系统 是无法显示 -10的,测试中 获得 高度是 10,识别成10了,因此 下次要注意设置高度可能的值了,