课程名称 | 现代操作系统应用开发 | 任课老师 | 郑贵锋 |
---|---|---|---|
年级 | 17级 | 专业(方向) | 软件工程 |
学号 | 17343125 | [email protected] | |
开始日期 | 完成日期 | 2019.11.11 |
Mac OS
Dart && Objective-C
Android Studio && Xcode
完成度:完成了基本要求,没有实现加分项
主函数:
“请选择题目”文本框
- (UILabel *)Label {
_titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 100, self.view.frame.size.width, 30)];
_titleLabel.text = @"请选择题目";
_titleLabel.font = [UIFont systemFontOfSize:20];
_titleLabel.textColor = [UIColor blackColor];
_titleLabel.textAlignment = NSTextAlignmentCenter;
_titleLabel.backgroundColor = [UIColor whiteColor];
return _titleLabel;
}