ios开发备忘录二十

使用cocoapos 的时候在新建完podfile之后需要sudo pod install才能下载安装第三方库

ios6.1中将泛型指针从id改为了instancetype

遍历NSDictionary* 对象的一般代码

int counter = 0;
        
        for(NSString* key in [[self weather] allKeys]){
            NSLog(@"id--->%d, key--->%@, value--->%@. !!!", counter, key, [[self weather]valueForKey:key]);
            counter ++;
        }

sourceTree 什么的还要研究研究


http://stackoverflow.com/questions/8021426/xcode-4-2-gets-stuck-attaching-to-myapp-when-running

http://www.raywenderlich.com/zh-hans/36079/afnetworking%E9%80%9F%E6%88%90%E6%95%99%E7%A8%8B%EF%BC%881%EF%BC%89

uitableview 常用代码

-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    return @"clea";
}

-(NSString*)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    return [NSString stringWithString:@"cleantha"];
}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    return 50;
}

你可能感兴趣的:(ios开发备忘录二十)