其实 eye 有不少有价值的 blog 文章
在学习 ruby
http://code.google.com/p/r2-release/wiki/GoogleReaderApi#google_reader_api_介绍
找到了这个,测试可用,希望对大家有帮助
@ichord 但是我看到不少人做了第三方的工具,比如 Reeder 这样的,应该还是可以调用到的吧
是即将出现吧
@Standme 看这里,http://stackoverflow.com/questions/9651670/issue-updating-ruby-on-mac-with-xcode-4-3-1 难道第一个回答还搞定不了你的问题吗?
YIi
用代码的方式实现,我写了个简单的
定义你的 cell 头文件
#import <UIKit/UIKit.h>
@interface MyCell : UITableViewCell
@end
m文件
#import "MyCell.h"
@implementation MyCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
UILabel *tempLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 150, 25)];
[tempLabel setText:@"Test my Label"];
[self addSubview:tempLabel];
[tempLabel release];
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
在你的 tableView 初始化 cell 的时候
#pragma mark -
#pragma mark Table View Data Source Methods
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [noteListArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"thecell"];
if(cell == nil){
cell =[[MyCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"thecell"];
}
return cell;
}
主要是这句
if(cell == nil){
cell =[[MyCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"thecell"];
}
Sorry,不知道怎么格式化代码和高亮
上次在活动帖报名,一直没确认,看到有人数限制,也不确定是否可以前去参加,错过了
@willmouse 握手,这两本书我都有,不过那个我看的第三版
还要在 xcode 里面安装那个 command line tools
报名
binlog 可以只保留最新的四五个,只要数据每天都有备份就没必要留那么多
http://book.douban.com/subject/1839273/
在读这本,淘的二手书
我用 rvm 装的,不想前期在这些问题上纠结太久,以后慢慢的就会明白
#9 楼 @geekontheway thanks,原来是 yaml 写的不标准。 @all,thanks a lot
#4 楼 @geekontheway 这些我确实都试过了
rails server
Mac+Textmate+Aptana
ESC 键映射成了向左拨动屏幕,试过 set nu,这个支持,但是好像没办法保存文件,也不高亮
+1
删除安装的文件,有的支持 make uninstall