Gal3rielol 最近的时间轴更新
Gal3rielol

Gal3rielol

V2EX 第 10089 号会员,加入于 2011-07-06 20:34:34 +08:00
Gal3rielol 最近回复了
2013-07-13 19:12:29 +08:00
回复了 clowwindy 创建的主题 分享创造 知乎日报 - 比新闻更多
感觉不是很复杂的app, 但performance不是很好的样子, 主界面不是很流畅啊
2013-05-31 19:54:55 +08:00
回复了 mozartgho 创建的主题 程序员 对于王垠的这篇 “无谓的编辑器战争" 大家有什么看法?
@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];
}
2013-05-11 21:47:25 +08:00
回复了 undozen 创建的主题 程序员 可以再聊聊 emacs vs vim 吗?
所以你们对编辑器的认识只有他们移动cursor的快捷键不同么
2013-02-17 12:52:16 +08:00
回复了 PrideChung 创建的主题 iDev Xcode 4.6 的新功能
`真心希望Xcode能加强下Debug方面的功能,经常出现异常的时候只有一句毫无信息量的 "unrecognized selector sent to 0xxxxx", 要不就把你跳转到一堆看不懂也不会看的汇编代码。`

这就是你不会用了吧, 加一个异常断电就好了
2013-01-15 21:25:18 +08:00
回复了 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
2012-12-02 11:12:33 +08:00
回复了 Brutal 创建的主题 iDev 新手问几个关于 iOS 开发的问题
ARC和Manual性能比较时候采取的方法是什么, 直接说结论是没有说服力的.
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5996 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 66ms · UTC 02:12 · PVG 10:12 · LAX 19:12 · JFK 22:12
Developed with CodeLauncher
♥ Do have faith in what you're doing.