Gal3rielol's recent timeline updates
Gal3rielol

Gal3rielol

V2EX member #10089, joined on 2011-07-06 20:34:34 +08:00
Gal3rielol's recent replies
Jul 13, 2013
Replied to a topic by clowwindy 分享创造 知乎日报 - 比新闻更多
感觉不是很复杂的app, 但performance不是很好的样子, 主界面不是很流畅啊
@Golevka

不是parse,而是理解语义。
动态语言不带type annotation,做出IDE的那些功能很难,所以写ruby,python的时候用编辑器是可以的,因为根本没有好的IDE可以用。
而写Java,objc这种能用IDE却不用,非要用编辑器就...
在viewDidLoad:里面这么做


- (void)viewDidLoad
{
[super viewDidLoad];

//Do the stuff about tableview
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];

//Add a container view as self.view and the superview of the tableview
UITableView *tableView = (UITableView *)self.view;
UIView *containerView = [[UIView alloc] initWithFrame:self.view.frame];
tableView.frame = tableView.bounds;
self.view = containerView;
[containerView addSubview:tableView];

//add the view as a subview of the container view, it will be fixed on the top
UIView *topView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];
topView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5];
[self.view addSubview:topView];
}
May 11, 2013
Replied to a topic by undozen 程序员 可以再聊聊 emacs vs vim 吗?
所以你们对编辑器的认识只有他们移动cursor的快捷键不同么
Feb 17, 2013
Replied to a topic by PrideChung iDev Xcode 4.6 的新功能
`真心希望Xcode能加强下Debug方面的功能,经常出现异常的时候只有一句毫无信息量的 "unrecognized selector sent to 0xxxxx", 要不就把你跳转到一堆看不懂也不会看的汇编代码。`

这就是你不会用了吧, 加一个异常断电就好了
Jan 15, 2013
Replied to a topic by Numbcoder iDev 请教一个关于 NSData 的诡异问题
*range*
The range of bytes in the receiver's data to copy to buffer. The range must lie within the range of bytes of the receiver's data.

rang of bytes
Dec 2, 2012
Replied to a topic by Brutal iDev 新手问几个关于 iOS 开发的问题
ARC和Manual性能比较时候采取的方法是什么, 直接说结论是没有说服力的.
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   905 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 27ms · UTC 22:26 · PVG 06:26 · LAX 15:26 · JFK 18:26
♥ Do have faith in what you're doing.