{"id":4150,"date":"2010-05-11T17:06:01","date_gmt":"2010-05-11T11:36:01","guid":{"rendered":"http:\/\/mobisoftinfotech.com\/?p=4150"},"modified":"2017-02-22T12:09:09","modified_gmt":"2017-02-22T12:09:09","slug":"iphone-uitableview-tutorial-grouped-table","status":"publish","type":"post","link":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table","title":{"rendered":"iPhone UITableView Tutorial: Grouped Table"},"content":{"rendered":"<p>Grouped table view is an extension of the normal table view in iPhone. It displayes the data in several sectioned lists. Each section has a header and number of rows associated with it. Examples of grouped table are the &#8216;contacts&#8217; list, a dictionary,etc. In this tutorial, we will create a grouped table using a dictionary, to create a names list,unlike the plain table in which we had used an array. So lets get started!<\/p>\n<p>Step 1: Create a view based application and name it &#8216;GroupedTable&#8217;.<\/p>\n<p>Step 2: Put the following code in  &#8216;GroupedTableViewController.h&#8217;<\/p>\n<pre>\n[objc highlight=\"4,5,8,9\"]\n#import &amp;lt;UIKit\/UIKit.h&amp;gt;\n\n@interface GroupedTableViewController : UIViewController {\n\tNSDictionary *tableContents;\n\tNSArray *sortedKeys;\n}\n\n@property (nonatomic,retain) NSDictionary *tableContents;\n@property (nonatomic,retain) NSArray *sortedKeys;\n@end\n[\/objc]\n<\/pre>\n<p>Here, we have declared a dictionary to hold the section headers and their respective row contents. And an array to hold the sorted keys of the dictionary.<\/p>\n<p>Step 3: Now, open &#8216;GroupedTableViewController.m&#8217; file and put the following code in it.<\/p>\n<pre>\n[objc highlight=\"4,5,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,30,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96\"]\n#import &amp;quot;GroupedTableViewController.h&amp;quot;\n\n@implementation GroupedTableViewController\n@synthesize tableContents;\n@synthesize sortedKeys;\n\n\/\/ Implement viewDidLoad to do additional setup after loading the view, typically from a nib.\n- (void)viewDidLoad {\n\tNSArray *arrTemp1 = [[NSArray alloc]\n                        initWithObjects:@&amp;quot;Andrew&amp;quot;,@&amp;quot;Aubrey&amp;quot;,@&amp;quot;Alice&amp;quot;,nil];\n\tNSArray *arrTemp2 = [[NSArray alloc]\n                        initWithObjects:@&amp;quot;Bob&amp;quot;,@&amp;quot;Bill&amp;quot;,@&amp;quot;Bianca&amp;quot;,nil];\n\tNSArray *arrTemp3 = [[NSArray alloc]\n                        initWithObjects:@&amp;quot;Candice&amp;quot;,@&amp;quot;Clint&amp;quot;,@&amp;quot;Chris&amp;quot;,nil];\n\tNSDictionary *temp =[[NSDictionary alloc]\n               initWithObjectsAndKeys:arrTemp1,@&amp;quot;A&amp;quot;,arrTemp2,\n                                                       @&amp;quot;B&amp;quot;,arrTemp3,@&amp;quot;C&amp;quot;,nil];\n\tself.tableContents =temp;\n\t[temp release];\n\tself.sortedKeys =[[self.tableContents allKeys]\n                              sortedArrayUsingSelector:@selector(compare:)];\n\t[arrTemp1 release];\n\t[arrTemp2 release];\n\t[arrTemp3 release];\n       [super viewDidLoad];\n}\n\n- (void)dealloc {\n\t[tableContents release];\n\t[sortedKeys release];\n        [super dealloc];\n}\n\n#pragma mark Table Methods\n\n- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{\n    return [self.sortedKeys count];\n}\n\n- (NSString *)tableView:(UITableView *)tableView\n titleForHeaderInSection:(NSInteger)section\n{\n\treturn [self.sortedKeys objectAtIndex:section];\n}\n\n- (NSInteger)tableView:(UITableView *)table\nnumberOfRowsInSection:(NSInteger)section {\n\tNSArray *listData =[self.tableContents objectForKey:\n                                 [self.sortedKeys objectAtIndex:section]];\n\treturn [listData count];\n}\n\n- (UITableViewCell *)tableView:(UITableView *)tableView\n\t\t cellForRowAtIndexPath:(NSIndexPath *)indexPath {\n\tstatic NSString *SimpleTableIdentifier = @&amp;quot;SimpleTableIdentifier&amp;quot;;\n\n\tNSArray *listData =[self.tableContents objectForKey:\n                     [self.sortedKeys objectAtIndex:[indexPath section]]];\n\n\tUITableViewCell * cell = [tableView\n\t          dequeueReusableCellWithIdentifier: SimpleTableIdentifier];\n\n\tif(cell == nil) {\n\n\t\t cell = [[[UITableViewCell alloc]\n\t\t initWithStyle:UITableViewCellStyleDefault\n\t\t reuseIdentifier:SimpleTableIdentifier] autorelease];\n\n\t\t\/*cell = [[[UITableViewCell alloc]\n\t\t\t\t initWithStyle:UITableViewCellStyleSubtitle\n\t\t\t\t reuseIdentifier:SimpleTableIdentifier] autorelease];\n\t\t*\/\n\t}\n\n\tNSUInteger row = [indexPath row];\n\tcell.textLabel.text = [listData objectAtIndex:row];\n\n\treturn cell;\n}\n\n- (void)tableView:(UITableView *)tableView\ndidSelectRowAtIndexPath:(NSIndexPath *)indexPath {\n\tNSArray *listData =[self.tableContents objectForKey:\n                    [self.sortedKeys objectAtIndex:[indexPath section]]];\n\tNSUInteger row = [indexPath row];\n\tNSString *rowValue = [listData objectAtIndex:row];\n\n\tNSString *message = [[NSString alloc] initWithFormat:rowValue];\n\tUIAlertView *alert = [[UIAlertView alloc]\n\t\t\t\t\t\t  initWithTitle:@&amp;quot;You selected&amp;quot;\n\t\t\t\t\t\t  message:message delegate:nil\n\t\t\t\t\t\t  cancelButtonTitle:@&amp;quot;OK&amp;quot;\n\t\t\t\t\t\t  otherButtonTitles:nil];\n\t[alert show];\n\t[alert release];\n\t[message release];\n\t[tableView deselectRowAtIndexPath:indexPath animated:YES];\n}\n\n@end\n[\/objc]\n<\/pre>\n<p><strong>viewdidLoad<\/strong>: Here, we populate the dictionary using three arrays of names as objects and alphabets as keys. Then we sort the array &#8216;allKeys&#8217; of the dictionary and put it in sortedKeys.<\/p>\n<h2>Table Methods<\/h2>\n<p><strong>numberOfSectionsInTableView<\/strong> : Returns the count of keys in the dictionary.<\/p>\n<p><strong>titleForHeaderInSection<\/strong> : Returns the value of key for that particular section.<\/p>\n<p><strong>cellForRowAtIndexPath<\/strong> : Here, listdata is an array which is assigned the value for the key corresponding to the respective section. For every section, the contents of listdata are displayed.<\/p>\n<p><strong>didSelectRowAtIndexPath<\/strong> : In this method, we display an alert view when a row is selected.<\/p>\n<p>Step 4 : Open the &#8216;GroupedTableViewController.xib&#8217;. Drag and drop a table view on it. Select the table view and open its Attributes Inspector (command+1). Change the table style from &#8216;Plain&#8217; to &#8216;Grouped&#8217;.<\/p>\n<div style=\"verticle-align:centre\">\n<a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-5.png\">\n<p style=\"text-align:center\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-5.png\" alt=\"Attributes Inspector\" title=\"Attributes Inspector\" width=\"291\" height=\"254\" class=\"alignleft size-full wp-image-1000\"><\/noscript><img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20291%20254%22%3E%3C%2Fsvg%3E\" alt=\"Attributes Inspector\" title=\"Attributes Inspector\" width=\"291\" height=\"254\" class=\"alignleft size-full wp-image-1000 lazyload\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-5.png\"><\/p>\n<p><\/p><\/a>\n<p><a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-32.png\"><\/a><\/p>\n<p style=\"text-align:center\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-32.png\" alt=\"GroupedTableViewController\" title=\" GroupedTableViewController.xib\" width=\"250\" height=\"341\" class=\"aligncenter size-full wp-image-998\"><\/noscript><img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20250%20341%22%3E%3C%2Fsvg%3E\" alt=\"GroupedTableViewController\" title=\" GroupedTableViewController.xib\" width=\"250\" height=\"341\" class=\"aligncenter size-full wp-image-998 lazyload\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-32.png\"><\/p>\n<p>\n<\/p><\/div>\n<p>Step 5 : Open the Connections Inspector (command+2) for the table and link its datasource and delegate to the file&#8217;s owner.<\/p>\n<p style=\"text-align:center\"><a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-4.png\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-4-300x83.png\" alt=\"Connection\" title=\"Connection\" width=\"400\" height=\"150\" class=\"aligncenter size-medium wp-image-999\"><\/noscript><img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20400%20150%22%3E%3C%2Fsvg%3E\" alt=\"Connection\" title=\"Connection\" width=\"400\" height=\"150\" class=\"aligncenter size-medium wp-image-999 lazyload\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-4-300x83.png\"><\/a><\/p>\n<p>Step 6 : You can download the source code <a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/GroupedTable.zip\">here<\/a>.Save,build and run the project. The output will be as follows:<\/p>\n<p style=\"text-align:center\"><a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-11.png\"><noscript><img decoding=\"async\" title=\"Output 1\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-11-161x300.png\" alt=\"Save,build and run the project\" width=\"161\"><\/noscript><img decoding=\"async\" title=\"Output 1\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"Save,build and run the project\" width=\"161\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-11-161x300.png\" class=\" lazyload\"><\/a><\/p>\n<p style=\"text-align:center\"><a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-25.png\"><noscript><img decoding=\"async\" title=\"Output 2\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-25-161x300.png\" alt=\"Save,build and run the project\" width=\"161\"><\/noscript><img decoding=\"async\" title=\"Output 2\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"Save,build and run the project\" width=\"161\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/05\/Picture-25-161x300.png\" class=\" lazyload\"><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Grouped table view is an extension of the normal table view in iPhone. It displayes the data in several sectioned lists. Each section has a header and number of rows associated with it. Examples of grouped table are the &#8216;contacts&#8217; list, a dictionary,etc. In this tutorial, we will create a grouped table using a dictionary, [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":7434,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_s2mail":"yes","footnotes":""},"categories":[3],"tags":[79,328,45],"class_list":["post-4150","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-iphone","tag-grouped-table","tag-iphone-ipad","tag-uitableview"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>iPhone UITableView Tutorial: Grouped Table - Mobisoft Infotech<\/title>\n<meta name=\"description\" content=\"iPhone UITableView Tutorial: Grouped Table - Grouped table view is an extension of the normal table view in iPhone.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"iPhone UITableView Tutorial: Grouped Table - Mobisoft Infotech\" \/>\n<meta property=\"og:description\" content=\"iPhone UITableView Tutorial: Grouped Table - Grouped table view is an extension of the normal table view in iPhone.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\" \/>\n<meta property=\"og:site_name\" content=\"Mobisoft Infotech\" \/>\n<meta property=\"article:published_time\" content=\"2010-05-11T11:36:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-02-22T12:09:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ruchi Raval\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ruchi Raval\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#article\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\"},\"author\":{\"name\":\"Ruchi Raval\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6975ec0e158682ee8e5f4fbd7221b932\"},\"headline\":\"iPhone UITableView Tutorial: Grouped Table\",\"datePublished\":\"2010-05-11T11:36:01+00:00\",\"dateModified\":\"2017-02-22T12:09:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\"},\"wordCount\":304,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg\",\"keywords\":[\"grouped table\",\"iPhone \u2013 iPad\",\"UITableView\"],\"articleSection\":[\"iPhone - iPad\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\",\"name\":\"iPhone UITableView Tutorial: Grouped Table - Mobisoft Infotech\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage\"},\"image\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg\",\"datePublished\":\"2010-05-11T11:36:01+00:00\",\"dateModified\":\"2017-02-22T12:09:09+00:00\",\"author\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6975ec0e158682ee8e5f4fbd7221b932\"},\"description\":\"iPhone UITableView Tutorial: Grouped Table - Grouped table view is an extension of the normal table view in iPhone.\",\"breadcrumb\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg\",\"contentUrl\":\"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg\",\"width\":1920,\"height\":550,\"caption\":\"iPhone UITableView Tutorial- Grouped Table_l-min\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mobisoftinfotech.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"iPhone UITableView Tutorial: Grouped Table\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/\",\"name\":\"Mobisoft Infotech\",\"description\":\"Discover Mobility\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6975ec0e158682ee8e5f4fbd7221b932\",\"name\":\"Ruchi Raval\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c48187f401d31f2a08585cb66b4503c90f0586889e7212ae0680cd4edcb9910e?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c48187f401d31f2a08585cb66b4503c90f0586889e7212ae0680cd4edcb9910e?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c48187f401d31f2a08585cb66b4503c90f0586889e7212ae0680cd4edcb9910e?s=96&r=g\",\"caption\":\"Ruchi Raval\"},\"sameAs\":[\"http:\/\/www.mobisoftinfotech.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"iPhone UITableView Tutorial: Grouped Table - Mobisoft Infotech","description":"iPhone UITableView Tutorial: Grouped Table - Grouped table view is an extension of the normal table view in iPhone.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table","og_locale":"en_US","og_type":"article","og_title":"iPhone UITableView Tutorial: Grouped Table - Mobisoft Infotech","og_description":"iPhone UITableView Tutorial: Grouped Table - Grouped table view is an extension of the normal table view in iPhone.","og_url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table","og_site_name":"Mobisoft Infotech","article_published_time":"2010-05-11T11:36:01+00:00","article_modified_time":"2017-02-22T12:09:09+00:00","og_image":[{"width":1920,"height":550,"url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg","type":"image\/jpeg"}],"author":"Ruchi Raval","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ruchi Raval","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#article","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table"},"author":{"name":"Ruchi Raval","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6975ec0e158682ee8e5f4fbd7221b932"},"headline":"iPhone UITableView Tutorial: Grouped Table","datePublished":"2010-05-11T11:36:01+00:00","dateModified":"2017-02-22T12:09:09+00:00","mainEntityOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table"},"wordCount":304,"commentCount":0,"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg","keywords":["grouped table","iPhone \u2013 iPad","UITableView"],"articleSection":["iPhone - iPad"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table","url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table","name":"iPhone UITableView Tutorial: Grouped Table - Mobisoft Infotech","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage"},"image":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage"},"thumbnailUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg","datePublished":"2010-05-11T11:36:01+00:00","dateModified":"2017-02-22T12:09:09+00:00","author":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6975ec0e158682ee8e5f4fbd7221b932"},"description":"iPhone UITableView Tutorial: Grouped Table - Grouped table view is an extension of the normal table view in iPhone.","breadcrumb":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#primaryimage","url":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg","contentUrl":"https:\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2015\/01\/iPhone-UITableView-Tutorial-Grouped-Table_l-min.jpg","width":1920,"height":550,"caption":"iPhone UITableView Tutorial- Grouped Table_l-min"},{"@type":"BreadcrumbList","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-uitableview-tutorial-grouped-table#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mobisoftinfotech.com\/resources\/"},{"@type":"ListItem","position":2,"name":"iPhone UITableView Tutorial: Grouped Table"}]},{"@type":"WebSite","@id":"https:\/\/mobisoftinfotech.com\/resources\/#website","url":"https:\/\/mobisoftinfotech.com\/resources\/","name":"Mobisoft Infotech","description":"Discover Mobility","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mobisoftinfotech.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/6975ec0e158682ee8e5f4fbd7221b932","name":"Ruchi Raval","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c48187f401d31f2a08585cb66b4503c90f0586889e7212ae0680cd4edcb9910e?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c48187f401d31f2a08585cb66b4503c90f0586889e7212ae0680cd4edcb9910e?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c48187f401d31f2a08585cb66b4503c90f0586889e7212ae0680cd4edcb9910e?s=96&r=g","caption":"Ruchi Raval"},"sameAs":["http:\/\/www.mobisoftinfotech.com"]}]}},"_links":{"self":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4150","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/comments?post=4150"}],"version-history":[{"count":9,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4150\/revisions"}],"predecessor-version":[{"id":10337,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4150\/revisions\/10337"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media\/7434"}],"wp:attachment":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media?parent=4150"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/categories?post=4150"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/tags?post=4150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}