-1

我正在使用情节提要和动态 UITableView 添加我的单元格,如下所示。我需要知道如何在每个单元格的 UITextField 以及 UISwitch 状态等中保存此文本,这样当我上下滚动时,数据不会丢失。此外,当应用程序关闭时,我需要它来显示重新打开时输入的数据。我对编程很陌生,这是我的第一个 UItableView 项目。编码示例会很棒,请提供尽可能详细的信息!先感谢您!

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];

    // Make cell unselectable and set font.
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.textLabel.font = [UIFont fontWithName:@"ArialMT" size:13];

if (indexPath.section == 0) {

    UITextField* tf = nil;
    switch ( indexPath.row ) {
        case 0: {
            cell.textLabel.text = @"Name" ;
            tf = nameFieldTextField = [self makeTextField:self.name placeholder:@"John Appleseed"];
            nameFieldTextField.tag = 1;
            [cell addSubview:nameFieldTextField];
            break ;
        }
        case 1: {
            cell.textLabel.text = @"Address" ;
            tf = addressFieldTextField = [self makeTextField:self.address placeholder:@"Street Address"];
            addressFieldTextField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
            [cell addSubview:addressFieldTextField];
            break ;
        }
        case 2: {
            cell.textLabel.text = @"Email" ;
            tf = emailFieldTextField = [self makeTextField:self.email placeholder:@"example@gmail.com"];
            emailFieldTextField.keyboardType = UIKeyboardTypeEmailAddress;
            [cell addSubview:emailFieldTextField];
            break ;
        }
        case 3: {
            cell.textLabel.text = @"Phone" ;
            tf = phoneFieldTextField = [self makeTextField:self.phone placeholder:@"xxx-xxx-xxxx"];
            phoneFieldTextField.keyboardType = UIKeyboardTypePhonePad;
            phoneFieldTextField.tag = 10;
            phoneFieldTextField.text = [self formatPhoneNumber:phoneFieldTextField.text deleteLastChar:YES];
            [cell addSubview:phoneFieldTextField];
            break ;
        }
        case 4: {
            cell.textLabel.text = @"DOB" ;
            tf = dateOfBirthTextField = [self makeTextField:self.dateOfBirth placeholder:@"xx/xx/xxxx"];
            dateOfBirthTextField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
            [cell addSubview:dateOfBirthTextField];
            break ;
        }

    }
    // Textfield dimensions
    tf.frame = CGRectMake(120, 12, 170, 30);

    // Workaround to dismiss keyboard when Done/Return is tapped
    [tf addTarget:self action:@selector(textFieldFinished:) forControlEvents:UIControlEventEditingDidEndOnExit];
4

6 回答 6

4

我认为您可以制作一个模型对象来存储数据。

.h 文件

@interface User : NSObject <NSCoding>

@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *address;
@property (nonatomic, copy) NSString *email;
@property (nonatomic, copy) NSString *phone;
@property (nonatomic, copy) NSString *dob;

- (void)save;
+(User *)savedUser; 

.m 文件

#define kName    @"Name"
#define kAddress @"Address"
#define kEMail   @"EMail"
#define kPhone   @"Phone"
#define kDOB     @"DOB"

#define kSavedUser @"SavedUser"

@implementation User

- (void)encodeWithCoder:(NSCoder *)encoder{

    [encoder encodeObject:self.name     forKey:kName];
    [encoder encodeObject:self.address  forKey:kAddress];
    [encoder encodeObject:self.email    forKey:kEMail];
    [encoder encodeObject:self.phone    forKey:kPhone];
    [encoder encodeObject:self.dob      forKey:kDOB];

}

- (id)initWithCoder:(NSCoder *)decoder{
    self = [super init];
    if (self) {
        self.name       = [decoder decodeObjectForKey:kName];
        self.address    = [decoder decodeObjectForKey:kAddress];
        self.email      = [decoder decodeObjectForKey:kEMail];
        self.phone      = [decoder decodeObjectForKey:kPhone];
        self.dob        = [decoder decodeObjectForKey:kDOB];
    }

    return self;
}

#pragma mark - Save

- (void)save{

    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    NSData *data = [NSKeyedArchiver archivedDataWithRootObject:self];
    [defaults setObject:data forKey:kSavedUser];
    [defaults synchronize];
}

+(User *)savedUser{
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    NSData *data = [defaults objectForKey:kSavedUser];
    return [NSKeyedUnarchiver unarchiveObjectWithData:data];
}

UITableView 数据源

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier
                                                            forIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.detailTextField.delegate = self;
    [cell.detailTextField setTag:indexPath.row+1];

    switch (indexPath.row+1) {
        case 1:{
            cell.titleLabel.text = @"Name";
            cell.detailTextField.text = self.user.name;
            break;
        }
        case 2:{
            cell.titleLabel.text = @"Address";
            cell.detailTextField.text = self.user.address;
            break;
        }
        case 3:{
            cell.titleLabel.text = @"EMail";
            cell.detailTextField.text = self.user.email;
            break;
        }
        case 4:{
            cell.titleLabel.text = @"Phone";
            cell.detailTextField.text = self.user.phone;
            break;
        }
        case 5:{
            cell.titleLabel.text = @"D.O.B.";
            cell.detailTextField.text = self.user.dob;
            break;
        }

        default:
            break;
    }

    return cell;
}

解释太多了。我附上源代码,看看。 源代码

于 2013-06-07T14:36:50.583 回答
0

您需要添加某种持久性。由于您似乎拥有非常少量的数据,因此您需要做的是使用 NSDictionary 的 writeToFile:atomically: 方法将表的数据放入 NSDictionary 对象中。您可以使用 NSDictionary 的类方法 dictionaryWithContentsOfFile: 加载数据,将保存图像的位置作为参数传递。

于 2013-05-31T19:00:26.913 回答
0

首先,为了从您的应用程序中保存数据,您可以使用 Core Data 或 NSUserDefaults,NSUserDefaults 应该用于保存少量数据,其余使用 Core Data(有很多关于核心数据的教程只是谷歌它)

但是您必须重写您的cellForRowAtIndexPath方法,因为执行错误。

首先用于dequeueReusableCellWithIdentifier检查是否已经创建了单元格(也许您听说过单元格重用,这就是它的完成方式),因为现在您正在为每次调用创建一个新单元格cellForRowAtIndexPath被调用(每次单元格显示时调用的方法在屏幕上)。

其次,dequeueReusableCellWithIdentifier检查方法返回的单元格是否为nil,如果为nil,则创建一个新单元格,如果不是则使用返回的单元格。

第三,创建一个可以有 aUITextField或 a的自定义单元格UISwitch,并cellForRowAtIndexPath检查你的文本UITextField,如果是 nil,则设置占位符,如果不保留它,这将允许在滚动表格时正确显示数据。

第四,UITextFields当用户开始/结束编辑时会调用委托方法,因此您不需要添加[tf addTarget:self action:@selector(textFieldFinished:) forControlEvents:UIControlEventEditingDidEndOnExit];,请检查 UITextFieldDelegate 协议(简单的谷歌东西:))

第五(我保证的最后一个)不要=在同一行代码中使用,它丑陋且难以阅读(tf = nameFieldTextField = [self makeT...

于 2013-05-31T19:00:56.897 回答
0

您可以将数据保存在 sqlite 数据库中。或者您可以在视图中加载一个数组。最初您将插入空值。当您从该 uitableviewcell 对象替换该空对象时将创建您的单元格。下次当您将加载单元格。您可以直接从该数组中获取数据。

于 2013-05-31T19:06:30.170 回答
0

有关示例代码,请查看GitHub 上TLIndexPathTools库中的“设置”示例项目。它演示了如何从表格中获取用户输入。它还展示了如何向表格添加动态行为,例如在输入更改时隐藏和显示行。

它没有显示如何在应用程序会话中保留值。为此,请查看 Core Data 或NSUserDefaults@d4Rk 建议的那样。

于 2013-05-31T19:07:18.763 回答
0
    nsmutablearray *arr=[[nsmutablearray alloc] init];
    [arr addobject:[nsnull class]];

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:customCellIdentifier];
                cell = [[[NSBundle mainBundle]loadNibNamed:@"cell" owner:self options:nil]objectAtIndex:0];
                cell.selectionStyle=UITableViewCellSelectionStyleNone;
                if (![[saveCellState objectAtIndex:indexPath.row] isKindOfClass:[NSNull class]])
                {
                    cell=(UITableViewCell *)[saveCellState objectAtIndex:indexPath.row];
                }
                if ([[saveCellState objectAtIndex:indexPath.row] isKindOfClass:[NSNull class]])
                {
}
于 2013-06-05T18:29:55.550 回答