I am doing a project to scan qr codes.a. In this project a history page is present in which i have to show the history of user's scans. It contains URLs only. So I am planning to show the list of urls he scanned previously in a table view.

How can i save the history list? help, please. can I use NSMutable array or something to save the scanned urls like this[myArray writeToURL:aURL atomically:NO];

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

yes for this you have to create a internel database using sqlite or coredata wherever user scan the qrcode store into database and wherever user wants to see history then fetch from database and display whatever method you use to dispaly

link|improve this answer
hiren,can u give me any tutorial links for doing this please? – alpz Dec 23 '11 at 7:19
try out this tutorials iphonesdkarticles.com/2008/10/… – Cocoa Matters Dec 23 '11 at 7:23
feedback
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingString:@"/"];
NSString *fullPathToFile = [filePath stringByAppendingPathComponent:@"myfile.plist"];
[myArray writeToFile:fullPathToFile atomically:YES];
link|improve this answer
feedback

Yes you can.

Your table view needs to implement a UITableViewDataSource to use the NSMutableArray as the source of your table view: (here using myArray as the array in this sample code)

-(void)saveToHistoryArray:(NSString *)urlAsString {
    [myArray addObject:urlAsString];
    [self.tableView reloadData];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
/* insert error checking here */

    return [myArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if(cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text = [myArray objectAtIndex:indexPath.row];

    return cell;
}
link|improve this answer
magus,thanks for response.but i need to know how can i save the history list in that array – alpz Dec 23 '11 at 6:42
added a simple method to do it. – Magnus Dec 25 '11 at 11:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.