教你解读IOS程序....

[lang=objc]

//
// This_Is_A_Life.m
// This_Is_A_Life
//
// Created by wi on 11-9-5.
// Copyright 2011 Wi.Inc. All rights reserved.
//

#import "This_Is_A_Life.h"

@implementation This_Is_A_Life



- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
{
// 从一开始,你就被定义,这将注定你会是个什么样子。。。
}
return self;
}

- (void)viewWillAppear:(BOOL)animated
- (void)lifeWillAppear:(BOOL)animated
{
// 你将出现。。。。。。
}


- (void)loadView
- (void)loadLife
{
// 出生中。。
}


- (void)viewDidLoad
- (void)lifeDidLoad
{
[super viewDidLoad];
// 你哭着来了,大家都在笑。。。。。
// 出生了,你有了自己的名字,有了性别,有了新衣服。。。。。
}


- (void)goLife
{
// 自定义自己的生活!
// 自己的命运,自己操盘....
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
// 这里,看你是否能够翻转自己的命运。。。。。。
}


- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];

// 总有一天,你老了。。。。。。
}

- (void)viewDidUnload
- (void)lifeDidUnload
{
// 总有一天,什么都没有了。。。。。。
}


- (void)dealloc
{
[super dealloc];
// 最后,你走了,解脱了,你在笑,大家都在哭。。。

// 所有的执念,都放手了。。。。
// 才明白,神马尼玛的,都不过是骗自己。。。。。。。。。。
}

@end




posted @ 2011-12-19 13:35  希望之旅  阅读(223)  评论(0编辑  收藏  举报