今天搞了一下表視圖UITableView
表視圖是在以後應用程序開發中經常用到的一個視圖,所以必須要熟練掌握
所獲不多,對視圖有了一個大概的了解
其中有用到NSBundle , 束 這個類
先說一下這個類,這個類大概看了一下,NSBundle說到底還是一個路徑而已
[NSBundle mainBundle]用這個方法可以:
返回當前應用程序可執行文件的一個目錄
NSString *path = [[NSBundle mainBundle] pathForResource:@"sortednames" ofType:@"plist"];
然後再用這個方法就可以以文件名和文件類型獲取文件路徑,通過這個路徑就可以訪問這個文件了
表視圖中常用的幾個方法
1、
//設置表的分組數
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
2、
//設置每個分組的行數
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
3、
//為每個分區指定一個標題
- (NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
4、
//為每行導入數據
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
5、
//創建索引
- (NSArray*)sectionIndexTitlesForTableView:(UITableView *)tableView
先就寫這麼多吧,明天繼續更新 ――LC