I have a NSMutableArray in which I m storing items taken from service url and done parsing.I m showing the array items in UITableView acting like gridview(4 columns in each row and no of rows depends on array count).It is something like showing all the online exam slots available in a week.So I have to load each day timings one by one and if all the slots are reserved for a particular day then should display a msg for that day (No slot available) and then load the next array items in a tableView. But I m able to get only the last day slots available.
I have to get in the following format:
10/1/2013
10:00 AM 11:00 AM 12:00 PM 1:00 PM
2:00 PM
11/1/2013
11:00 AM 12:00 PM 1:00 PM 2:00 PM
12/1/2013
No slot available
13/1/2013
10:00 AM 11:00 AM 12:00 PM 1:00 PM
2:00 PM 3:00 PM
............
As of now I m using a same tableview and loading each array items for a particular day seprately.But I m able to get only the last day timings
How can I get in this particular format?
Any suggestions/advices would be appreciable on which control to use or how to use the same tableView would be appreciable.
EDIT:
-(void)LoadWeekSlots
{
for(int i=0;i<7;i++)
{
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];
[offsetComponents setDay:i];
NSDate *nextDate = [gregorian dateByAddingComponents:offsetComponents toDate: [NSDate date] options:0];
[offsetComponents release];
[gregorian release];
NSLog(@"%@",nextDate);
NSDateFormatter *df=[[[NSDateFormatter alloc]init] autorelease];
df.dateFormat = @"yyyy-MM-dd";
getdateinmmformat=[[NSString stringWithFormat:@"%@",[df stringFromDate:nextDate]] componentsSeparatedByString:@""];
NSLog(@"%@",getdateinmmformat);
result=[[getdateinmmformat valueForKey:@"description"] componentsJoinedByString:@""];
weekdayString=[nextDate descriptionWithCalendarFormat:@"%A" timeZone:nil locale:[[NSUserDefaults standardUserDefaults]dictionaryRepresentation]];
NSLog(@"Day :%@",weekdayString);
selectedtableView=i;
[self LoadSlots];
NSLog(@"%@",arr1);
}
}
-(void)LoadSlots{
// calling the service url and taking the values in NSMutableArray (arr1)
[self CheckArray];
}
-(void)CheckArray{
NSMutableArray *yourArray = [[NSMutableArray alloc] init];
for (NSDictionary *dict in arr3) {
NSString *str=[dict valueForKey:@"Code"];
NSString*newstr= [str stringByReplacingOccurrencesOfString:@"," withString:@""];
[yourArray addObject:newstr];
}
BOOL isTheObjectThere = [yourArray containsObject:weekdayString];
if([arr1 count]==0 && isTheObjectThere==YES)
{
displayError =[[UILabel alloc]init];
[displayError setFrame:CGRectMake(0,390,320,200)];
displayError.textAlignment=UITextAlignmentLeft;
displayError.backgroundColor=[UIColor clearColor];
NSString *string1=@" No slot available.";
displayError.text=[NSString stringWithFormat:@"%@ ",string1];
displayError.textColor=[UIColor redColor];
displayError.shadowColor=[UIColor blackColor];
displayError.font=[UIFont fontWithName:@"Verdana-Italic" size:14];
[testscroll addSubview:displayError];
float fscrview =displayError.frame.origin.y + displayError.frame.size.height+ 60;
testscroll.contentSize=CGSizeMake(320, fscrview);
}
else
{
sections=[[NSMutableArray alloc] init];
for(int s=0;s<1;s++)
{
NSMutableArray *section=[[NSMutableArray alloc] init];
for(int i=0;i<[arr1 count];i++)
{
Item *item=[[Item alloc] init];
NSString *eventName=[[arr1 objectAtIndex:i]objectForKey:@"TimeStart"];
item.TimeStart=eventName;
[section addObject:item];
}
[sections addObject:section];
}
self.tableView=[[UITableView alloc]initWithFrame:CGRectMake(0,390,320,[arr1 count]*40) style:UITableViewStylePlain];
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.tableView.scrollEnabled=NO;
[testscroll addSubview:self.tableView];
[self.tableView reloadData];
self.tableView.frame = CGRectMake(self.tableView.frame.origin.x, self.tableView.frame.origin.y, self.tableView.frame.size.width, self.tableView.contentSize.height);
float fscrview = self.tableView.frame.origin.y + self.tableView.frame.size.height + 10;
testscroll.contentSize=CGSizeMake(320, fscrview);
testscroll.scrollEnabled=YES;
}
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSMutableArray *sectionItems=[sections objectAtIndex:indexPath.section];
int numRows=[sectionItems count]/4;
if(numRows==0)
{
return 80;
}
else
{
NSArray* items = [sections objectAtIndex:indexPath.section];
int total = [items count];
float f = (float)total /4;
int numberOfGridRows = ceilf(f);
NSLog(@"\n\n Rows :>> %d",numberOfGridRows);
if(numberOfGridRows==1)
{
return numberOfGridRows * 100.0;
}
else if(numberOfGridRows==2)
{
return numberOfGridRows * 70.0;
}
else if(numberOfGridRows==3)
{
return numberOfGridRows * 60.0;
}
else if(numberOfGridRows==4)
{
return numberOfGridRows * 70.0;
}
if(numberOfGridRows>4 && numberOfGridRows<8)
{
return numberOfGridRows * 65.0;
}
else
{
return numberOfGridRows * 40.0 ;
}
}
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *hlCellID=@"hlCellID";
UITableViewCell* hlcell=[tableView dequeueReusableCellWithIdentifier:hlCellID];
if(hlcell == nil)
{
hlcell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:hlCellID]autorelease];
hlcell.accessoryType = UITableViewCellAccessoryNone;
hlcell.selectionStyle = UITableViewCellSelectionStyleNone;
}
int section=indexPath.section;
NSMutableArray *sectionItems=[sections objectAtIndex:section];
int n=[sectionItems count];
int i=0,i1=0;
while(i<n)
{
int yy= 4+i1*34;
int j=0;
for(j=0;j<4;j++)
{
if(i>=n)break;
Item *item=[sectionItems objectAtIndex:i];
CGRect rect=CGRectMake(0+70*j,yy,79,40);
UIButton *button=[[UIButton alloc] initWithFrame:rect];
[button setFrame:rect];
[button setContentMode:UIViewContentModeLeft];
button.titleLabel.font = [UIFont systemFontOfSize:14];
NSString *settitle=[NSString stringWithFormat:@"%@",item.TimeStart];
[button setTitle:settitle forState:UIControlStateNormal];
NSString *tagValue=[NSString stringWithFormat:@"%d%d",indexPath.section+1,i];
button.tag=[tagValue intValue];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[button setShowsTouchWhenHighlighted:YES];
[button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
[hlcell.contentView addSubview:button];
[button release];
i++;
}
i1=i1+1;
}
return hlcell;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [sections count];
}
This is the code I have done .

