RootViewController.h
@interface RootViewController : UIViewController {
BOOL Close[15]; //用于存放每一组的收起展开状态 YES 是收起 NO是展开
UITableView *_tableView;
}
@property(nonatomic, retain)NSArray *da...
分类:
其他好文 时间:
2014-10-30 11:50:52
阅读次数:
113
设置带有导航栏的根视图控制器
RootViewController.h
@interface RootViewController : UIViewController
{
UITableView *_tableView;
}
@property(nonatomic, retain)NSArray *data; //存放原本的数据
@property(nonatomic, reta...
分类:
其他好文 时间:
2014-10-30 11:50:28
阅读次数:
182
RootViewController.m
#import "ModalViewController.h"
@interface RootViewController ()
@end
@implementation RootViewController {
ModalViewController *modalCtrl;
}
- (id)initWithNibName:(...
分类:
其他好文 时间:
2014-10-29 14:58:08
阅读次数:
169
RootViewController.h
#import "ModalViewController.h"
@interface RootViewController : UIViewController
RootViewController.m
@interface RootViewController ()
@end
@implementation RootViewContro...
分类:
其他好文 时间:
2014-10-29 14:57:57
阅读次数:
190
RootViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = [UIColor greenColor];
//创建显示文字的label
UILabel *label = [[UILabel alloc] initWithFr...
分类:
其他好文 时间:
2014-10-29 14:57:16
阅读次数:
162
RootViewController.m
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
...
分类:
其他好文 时间:
2014-10-29 14:57:16
阅读次数:
123
1 @implementation RootViewController 2 3 - (void)viewDidLoad 4 { 5 [super viewDidLoad]; 6 _demoNameArray = [[NSArray alloc]initWithObjects: ...
分类:
其他好文 时间:
2014-10-28 12:03:49
阅读次数:
293
源代码地址:http://url.cn/Sj5SSX效果图:工程图:注意,此代码中要加入第三方库PendulumView。RootViewController.m//点击任何处弹出提示-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)...
分类:
其他好文 时间:
2014-10-28 11:52:45
阅读次数:
154
效果图:工程图:注意:需要加入的第三方Toast.RootViewController.m//点击任何处,弹出提示-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self.view makeToast:@"Th...
分类:
其他好文 时间:
2014-10-27 17:05:16
阅读次数:
248
效果图:工程图:注意:要加入第三方库SVProgressHUD代码:RootViewController.m//点击任何处,弹出提示框-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [SVProgressHUD ...
分类:
其他好文 时间:
2014-10-27 17:00:29
阅读次数:
251