一个iOS RSS阅读器的分析

1.问:在一个tabBar,Navigation都具备的应用里,设置当前视图控制器的title,可以同时作用于tabBarItabBarItem和NavigationBarItem。那么此时如何分别设置?

   答:在初始化方法里设置self.title可以设置TabBarItem的title,而设置self.navigationBarItem.title可以设置NavigationBarItem的title。

2.问:如何使用内置的TableViewCell?

   答:根据选择的TableViewCell的风格,来分别指定其大小、位置、内容;或者新建label,imageView,并加到cell.contentView上去。

3.问:如何取消TableViewCell被选中?

   答:在委托方法里,写成如下:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

4.navVC,tabbarVC,navigationItem,tabbar都是VC自己的。

tabbar可以设置标题和背景。

navigationItem只有按钮和标题。

navVC,tabbarVC的可视化的东西不能在VC的初始化方法里设定。

你可能感兴趣的:(一个iOS RSS阅读器的分析)