iOS 標題內容待定

UITableView:spa

UITableViewCell的聲明文件。所包含的:code

UIView控件(contentView,做爲其它元素的父控件)  -- 容器blog

兩個UILabel控件( textLabel,detailTextLabel)    -- 顯示內容,詳情圖片

一個UIImage控件(imageView)           -- 圖片get

typedef NS_ENUM(NSInteger, UITableViewCellStyle) {
   //   左側顯示textlabel,imageView可選
    UITableViewCellStyleDefault,
   //   左側顯示textLabel,右側顯示detailTextLabel(默認藍色),imageView可選
    UITableViewCellStyleValue1,        
   //   左側依次顯示textLabel和detailLabel,imageView
    UITableViewCellStyleValue2,        
    //   左上方顯示textLabel,左下方顯示detailTextLabel,imageView
    UITableViewCellStyleSubtitle    
};             

UIAlertController -- 彈出窗it

    //建立彈出窗口
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"System Info" message: [contact getName] preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
    UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"好的" style:UIAlertActionStyleDefault handler:nil];
    [alertController addAction:cancelAction];
    [alertController addAction:okAction];
    [self presentViewController:alertController animated:YES completion:nil];
相關文章
相關標籤/搜索