- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/kreeger/BDKNotifyHUD
软件介绍
BDKNotifyHUD 是一个用来显示临时的带边框的提醒信息,居中显示。
使用方法:
// Create the HUD object BDKNotifyHUD *hud = [BDKNotifyHUD notifyHUDWithImage:[UIImage imageNamed:@"Checkmark.png"] text:@"This is a checkmark!"]; hud.center = CGPointMake(self.view.center.x, self.view.center.y - 20); // Animate it, then get rid of it. These settings last 1 second, takes a half-second fade. [self.view addSubview:hud]; [hud presentWithDuration:1.0f speed:0.5f inView:self.view completion:^{ [hud removeFromSuperview]; }];
Developer's Guide to Social Programming
Mark D. Hawker / Addison-Wesley Professional / 2010-8-25 / USD 39.99
In The Developer's Guide to Social Programming, Mark Hawker shows developers how to build applications that integrate with the major social networking sites. Unlike competitive books that focus on a s......一起来看看 《Developer's Guide to Social Programming》 这本书的介绍吧!
