使表格视图中的字幕成为时间戳(目标 C)[关闭]

Posted

技术标签:

【中文标题】使表格视图中的字幕成为时间戳(目标 C)[关闭]【英文标题】:Making the Subtitle in a Table View a time stamp (Objective C) [closed] 【发布时间】:2013-06-12 21:25:21 【问题描述】:

我正在开发一个教育任务管理器,我想将时间戳添加到单元格的字幕部分。我已经正确编码了任务的标题,但我想用创建任务时的时间戳替换副标题。

我想把字幕的位置变成时间戳

有人可以帮帮我吗?只需在下面评论我需要添加到附加到此 TableView 的控制器的代码。下面是我的 ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UITableViewDataSource>

-(IBAction)add:(UIBarButtonItem *)sender;
@property (nonatomic, strong) NSMutableArray *tasksArray;
@property (nonatomic, strong) IBOutlet UITableView *tasksTable;

@end

这是我的 ViewController.m

@interface ViewController ()

@end

@implementation ViewController

@synthesize tasksArray = _tasksArray;
@synthesize tasksTable = _tasksTable;

- (void)viewDidLoad

    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    NSLog(@"Test");
    self.tasksArray = [[NSMutableArray alloc]init];


- (void)didReceiveMemoryWarning

    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.


-(IBAction)add:(UIBarButtonItem *)sender

        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Enter the task name"          message:nil delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Add", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];


- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

    NSString *buttonTile = [alertView buttonTitleAtIndex:buttonIndex];
    if ([buttonTile isEqualToString:@"Add"]) 
        [self.tasksArray addObject:[alertView textFieldAtIndex:0].text];
        [self.tasksTable reloadData];
    


#pragma mark
#pragma table view

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

    return 1;


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

    return self.tasksArray.count;


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (!cell) 
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault     reuseIdentifier:CellIdentifier];
    
    cell.textLabel.text = [self.tasksArray objectAtIndex:indexPath.row];

    return cell;


@end

我是 *** 的新手,所以如果我的帖子很烂,请不要评判:p 哈哈!干杯,请帮助我!

【问题讨论】:

时间戳应该是什么?是在创建单元格时,还是在 taskArray 中提供时间? 新任务的创建时间。 这是题外话,但你的 UI 看起来又漂亮又干净 :) 您可以浏览开发者网站上的介绍性教程。他们处理狂犬病观点和持久性。最好对 Cadiz 有所了解,而不是向编译器扔代码。 【参考方案1】:

创建数据数组:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

    NSString *buttonTile = [alertView buttonTitleAtIndex:buttonIndex];
    if ([buttonTile isEqualToString:@"Add"])     
        NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];

        [dictionary setObject:[alertView textFieldAtIndex:0].text forKey:@"text"];
        [dictionary setObject:[NSDate date] forKey:@"date"];

        [self.taskArray addObject:dictionary];

        [self.tasksTable reloadData];
    

在你的 cellForRow 中

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (!cell) 
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault     reuseIdentifier:CellIdentifier];
    

    NSDictionary *currentDictionary = [self.taskArray objectAtIndex:indexPath.row];
    cell.textLabel.text = [currentDictionary objectForKey:@"text"];

    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"MM/dd/yyyy HH:mm:ss"];

    NSString *dateString = [dateFormat stringFromDate:[currentDictionary objectForKey:@"date"]];
    cell.detailTextLabel.text = dateString;

    return cell;

您可以看到日期格式化程序值here

【讨论】:

好的,我已经添加了,但是 cell.detailTextLabel = datestring;返回警告/错误;分配给只读属性。我需要在 .h 中添加一些内容吗? 我编辑了我的帖子以提供更多信息。我还修复了您所说的错误。我忘记了“.text”属性 谢谢你的帮助,你能看看我的下一个问题吗? ***.com/questions/17076385/…

以上是关于使表格视图中的字幕成为时间戳(目标 C)[关闭]的主要内容,如果未能解决你的问题,请参考以下文章

使表格视图中的 UITextField 可见滚动

找到数据时表格视图中的自定义标签文本?目标c

使 UITextField 子视图成为 UITableView 中的第一响应者时出错

表格视图单元格字幕

iOS 如何使 inputaccessoryview 中的文本视图成为第一响应者?

如何在目标c中删除表格视图中的多个部分?