ChooseMoney
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: http://code4app.com/ios/54b6452f933bf0565d8be4df
软件介绍
ChooseMoney是一款选择金钱的并提供按钮功能的功能性视图。可以对源代码进行二次开发。适用于各种充值,购物,购买会员,P2P等等,简单易用
示例代码:
#pragma -添加一个选择money的视图
{
RenewVipView *renewVIPView = [[RenewVipView alloc] init];
renewVIPView.frame = CGRectMake(0, 0, kMainScreenWidth, kMainScreenHeight);
renewVIPView.delelgate = self;
[bgScrollView addSubview:renewVIPView];
}
#pragma -实现点击的代理方法
-(void)commitMoneyButtonClickWithMoneyCount:(NSString *)moneyCount
{
NSString *resultString = [NSString stringWithFormat:@"您选择的金额为:%@",moneyCount];
UIAlertView *alVC = [[UIAlertView alloc] initWithTitle:@"提
示" message:resultString delegate:nil cancelButtonTitle:@"确
定" otherButtonTitles:nil, nil];
[alVC show];
}
GitHub入门与实践
[日] 大塚弘记 / 支鹏浩、刘斌 / 人民邮电出版社 / 2015-7 / 39.00元
本书从Git的基本知识和操作方法入手,详细介绍了GitHub的各种功能,GitHub与其他工具或服务的协作,使用GitHub的开发流程以及如何将GitHub引入到企业中。在讲解GitHub的代表功能Pull Request时,本书专门搭建了供各位读者实践的仓库,邀请各位读者进行Pull Request并共同维护。一起来看看 《GitHub入门与实践》 这本书的介绍吧!
