UISwitch 控件 ZJSwitch
- 授权协议: BSD
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/Jameszjhe/zjswitch
软件介绍
ZJSwitch 实现具有 iOS7 风格 UISwitch 控件,可在Switch上显示定制文字。
使用方法:
ZJSwitch *switch0 = [[ZJSwitch alloc] initWithFrame:CGRectMake(100, 100, 60, 31)]; switch0.backgroundColor = [UIColor clearColor]; [switch0 addTarget:self action:@selector(handleSwitchEvent:) forControlEvents:UIControlEventValueChanged]; [self.view addSubview:switch0]; ZJSwitch *switch1 = [[ZJSwitch alloc] initWithFrame:CGRectMake(100, 140, 60, 31)]; switch1.backgroundColor = [UIColor clearColor]; switch1.tintColor = [UIColor orangeColor]; [switch1 addTarget:self action:@selector(handleSwitchEvent:) forControlEvents:UIControlEventValueChanged]; [self.view addSubview:switch1]; ZJSwitch *switch2 = [[ZJSwitch alloc] initWithFrame:CGRectMake(100, 180, 80, 31)]; switch2.backgroundColor = [UIColor clearColor]; switch2.tintColor = [UIColor orangeColor]; switch2.onText = @"ON"; switch2.offText = @"OFF"; [switch2 addTarget:self action:@selector(handleSwitchEvent:) forControlEvents:UIControlEventValueChanged]; [self.view addSubview:switch2];
算法竞赛入门经典
刘汝佳、陈锋 / 2012-10 / 52.80元
《算法竞赛入门经典:训练指南》是《算法竞赛入门经典》的重要补充,旨在补充原书中没有涉及或者讲解得不够详细的内容,从而构建一个较完整的知识体系,并且用大量有针对性的题目,让抽象复杂的算法和数学具体化、实用化。《算法竞赛入门经典:训练指南》共6章,分别为算法设计基础、数学基础、实用数据结构、几何问题、图论算法与模型和更多算法专题,全书通过近200道例题深入浅出地介绍了上述领域的各个知识点、经典思维方式......一起来看看 《算法竞赛入门经典》 这本书的介绍吧!
