Я хочу показывать свои заголовки электронной почты в UITableView при нажатии кнопки «Входящие», мои заголовки электронной почты сохраняются в NSMutable Array,
-(IBAction)buttonInbox:(id)sender{
NSLog(@"Inbox Button Clicked %@",buttonInbox);
[self select:@"INBOX"];
NSArray *lines = [self sendCommand:@"fetch 1:* (body[header.fields (from subject date)])"];
//NSMutableArray *emaiArray= [[NSMutableArray alloc] init];
NSMutableString *totalEmail= [NSMutableString stringWithString:@""];
int counter = 0;
int i =0;
NSRange tmp;
for(i=0;i<[lines count];i++)
{
NSString *line = [lines objectAtIndex:i];
//NSLog(@" Burda %@" ,line);
tmp = [line rangeOfString:@"Date:"];
if( tmp.location != NSNotFound )
{
//NSLog(@" Date basildi %@" ,line);
counter++;
[totalEmail appendString:line ];
}
tmp = [line rangeOfString:@"From:"];
if (tmp.location != NSNotFound ) {
//NSLog(@" From basildi %@" ,line);
counter++;
[totalEmail appendString:line ];
}
tmp = [line rangeOfString:@"Subject:"];
if (tmp.location != NSNotFound ) {
//NSLog(@" Subject basildi %@" ,line);
counter++;
[totalEmail appendString:line ];
}
if (counter==3) {
[emailList addObject:totalEmail];
counter =0;
NSLog(@"total Email %@" ,totalEmail);
totalEmail = [NSMutableString stringWithString:@""];
}
}
}
Я пробовал это до сих пор, но не смог найти какие-либо рекомендации для размещенияэто когда события нажаты кнопки, это не работает так, как это показывает пустой просмотр таблицы в любом случае
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [emailList count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:[NSString stringWithFormat:@"Cell %i",indexPath.section]];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:[NSString stringWithFormat:@"Cell %i",indexPath.section]] autorelease];
}
cell.textLabel.text = [emailList objectAtIndex: indexPath.row];
return cell;
}