{"id":4069,"date":"2010-01-12T13:17:06","date_gmt":"2010-01-12T07:47:06","guid":{"rendered":"http:\/\/mobisoftinfotech.com\/?p=4069"},"modified":"2024-11-27T14:58:52","modified_gmt":"2024-11-27T09:28:52","slug":"iphone-view-based-application-from-scratch","status":"publish","type":"post","link":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch","title":{"rendered":"iPhone: View Based Application from scratch"},"content":{"rendered":"<p>Today we will see how to create a View based application from scratch starting with a Window based application. Now one would ask when Xcode gives us a template to create a View Based Application, why create one from scratch. We should do this because a new <a href=\"https:\/\/mobisoftinfotech.com\/services\/hire-ios-app-developers\">iPhone developer<\/a> should know how the template code is created so that he can understand what is going on behind the scene in the code and files created by the template. This improved understanding will allow you to customize the template as needed. Also this knowledge will help you when you would want to create a Navigation Controller Based or Tab Controller Based Application from scratch. (Yes there will be tutorials for those too, so stay tunes to our blog!) The code created by those templates is not easy to follow and modify, so I always prefer to create them from scratch.<\/p>\n<p>Start Xcode and choose a <a href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/getting-started-to-the-start\">Window based application<\/a> with name as ViewBased.<\/p>\n<div>\n<dl id=\"attachment_178\">\n<dt>\n<p style=\"text-align: center;\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/viewaseapp.png\" alt=\"ViewBased Application Window\" width=\"600\"><\/noscript><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"ViewBased Application Window\" width=\"600\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/viewaseapp.png\" class=\" lazyload\"><\/p>\n<\/dt>\n<dd>ViewBased Application Window<\/dd>\n<\/dl>\n<\/div>\n<p>In Group &amp; Files Panel (left side of above image) there is the Classes group which Contains 2 Delegate Files(.h or header and .m or implementation) are present. Every iPhone application will have one and only one object of type UIApplicationDelegate.<\/p>\n<p>While creating Cocoa based programs you will hear the word delegate used quite often. Delegate is a software design pattern. To quote, <a href=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\">iPhone Application Programming Guide :<\/a><\/p>\n<p>Delegation is a mechanism used to avoid subclassing complex UIKit objects, such as the default UIApplication object. Instead of subclassing and overriding methods, you use the complex object unmodified and put your custom code in side the delegate object. As interesting events occur, the complex objects ends messages to your delegate object. You can use these hooks\u201a to execute your custom code and implement the behavior you need.<\/p>\n<p>ViewBasedAppDelegate is the name of our application delegate. Here (Viewbased+AppDelegate) ViewBased is the name of iPhone application. And AppDelgate indicates that it is derived from UIApplicationDelegate. UIApplicationDelegate is a protocol (ie interface in C# or Java) which gives you access to two important events in iPhone Application life cycle:<\/p>\n<p><strong>1. applicationDidFinishLaunching <\/strong><br>\nThis method gets called immediately after the application launches. As the name suggests one can implement this method to perform some initialization for the application.<\/p>\n<p><strong>2. applicationWillTerminate<\/strong><br>\nThis method is called just before the application is terminated or killed. Overriding this method will help to save any unsaved data before the application is terminated or killed.<\/p>\n<p>Now right click on Classes group Add-New Files. You should get following dialog:<\/p>\n<div>\n<dl id=\"attachment_179\">\n<dt>\n<p style=\"text-align: center;\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/1.png\" alt=\"Add New File: New View Controller\" width=\"600\"><\/noscript><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"Add New File: New View Controller\" width=\"600\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/1.png\" class=\" lazyload\"><\/p>\n<\/dt>\n<dd>Add New File: New View Controller<\/dd>\n<\/dl>\n<\/div>\n<p>There are quite a few file types present for now just select Cocoa Touch Class From iPhone OS pane.<\/p>\n<p>Cocoa Touch is one of the frameworks we use for <a href=\"https:\/\/mobisoftinfotech.com\/services\/ios-app-development-company\">iPhone development<\/a>. Now select UIViewController subclass also tick on With XIB user interface. Click next and give name ViewOne and Click on Finished.<\/p>\n<p>Now Drag n Drop ViewOne.xib from Class Folder to Resources folder as all .xib files lie there only.<br>\n<strong>Add the lines 5 and 9 from the following code<\/strong> to ViewBasedAppDelegate.h File<\/p>\n<pre>[objc highlight=\"2,4,5,8,9\"]#import\n@class ViewOne;\n@interface ViewBasedAppDelegate : NSObject  {\nUIWindow *window;\nViewOne *viewOne;\n}\n\n@property (nonatomic, retain) IBOutlet UIWindow *window;\n@property (nonatomic,retain)IBOutlet ViewOne *viewOne;\n@end\n[\/objc]<\/pre>\n<p>\nIn above code @class is used to forward declaration of ViewOne. @property and @synthesize is used as getters and setter (or can say accessors and mutators).<\/p>\n<p>Now <strong>Add the lines 7, 12 and 17 from the following code<\/strong> to ViewBasedAppDelegate.m File<\/p>\n<pre>[objc highlight=\"2,6,7,12,17\"]#import &amp;amp;amp;amp;amp;amp;quot;ViewBasedAppDelegate.h&amp;amp;amp;amp;amp;amp;quot;\n#import &amp;amp;amp;amp;amp;amp;quot;ViewOne.h&amp;amp;amp;amp;amp;amp;quot;\n\n@implementation ViewBasedAppDelegate\n\n@synthesize window;\n@synthesize viewOne;\n\n- (void)applicationDidFinishLaunching:(UIApplication *)application {\n\/\/ Override point for customization after application launch\n\n[window addSubview:viewOne.view];\n[window makeKeyAndVisible];\n}\n\n- (void)dealloc {\n[viewOne release];\n[window release];\n[super dealloc];\n}\n@end\n[\/objc]<\/pre>\n<p>\nIn above code applicationDidFinishLaunching: method will be called when your application just finishes its launching process. Using addSubview: method we add view inside the window. Then we make this window visible using makeKeyAndVisible.<\/p>\n<p>In dealloc method we are deallocating memory for all objects that we have allocated\/retained. Like viewOne, window etc.<\/p>\n<p>Here make sure that you save (command + S) and build (command + B) the project. Otherwise sometimes interface builder won&#8217;t pick the outlets you just created.<\/p>\n<p>Now double click on MainWindow.xib in Resources Group<\/p>\n<div>\n<dl id=\"attachment_180\">\n<dt>\n<p style=\"text-align: center;\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/2.png\" alt=\"MainWindow.xib\" width=\"278\"><\/noscript><img decoding=\"async\" src=\"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"MainWindow.xib\" width=\"278\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/2.png\" class=\" lazyload\"><\/p>\n<\/dt>\n<dd>MainWindow.xib<\/dd>\n<\/dl>\n<\/div>\n<p>There are four Objects in MainWindow.xib. They are<br>\nFile&#8217;s Owner,First Responder, View Based App Delgate and Window.<\/p>\n<p>The File&#8217;s Owner is one of the most important objects in a nib file. Because it provides link between application code and content of .xib file. Actually it is controller object in .xib.<\/p>\n<p>View Based App Delegate is subclass of UIApplicationdelgate.<\/p>\n<div>\n<dl id=\"attachment_181\">\n<dt>\n<p style=\"text-align: center;\"><noscript><img decoding=\"async\" src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/3.png\" alt=\"Library\" width=\"278\" height=\"744\"><\/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%20278%20744%22%3E%3C%2Fsvg%3E\" alt=\"Library\" width=\"278\" height=\"744\" data-src=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/3.png\" class=\" lazyload\"><\/p>\n<\/dt>\n<dd>Library<\/dd>\n<\/dl>\n<\/div>\n<p>Generally every iPhone application will have only one AppDelegate file and one main window.<\/p>\n<p>Now open Library from tools menu<br>\n(shift +command + L)<\/p>\n<p>Add View Controller to window from library by drag n drop to MainWindow.xib. Please note that we are dragging the view controller on the window titled MainWindow.xib and not on the window title window. A new window will be created with view on it.<\/p>\n<p>Now open Identity Inspector(command +4) and select view in MainWindow.xib<\/p>\n<p>Change class name to Viewone.<\/p>\n<p>Notice that View Controller changes to Viewone in mainwindow.xib. Select View Based App Delagate and open Connection Inspector (command +2) make connection with viewone as shown.<\/p>\n<p>Go back to Xcode and double click on Viewone.xib. Open identity Inspector(command+1) change the background color.<\/p>\n<p>Now save the changes. Goto xcode save the project (command+s) and build and rum your project.<\/p>\n<p>At this point you have created a complete view based application from scratch starting from a window based application.<\/p>\n<p>You can download the source code used in this tutorial from here : <a href=\"\/\/mobisoftinfotech.com\/resources\/wp-content\/uploads\/2010\/01\/ViewBased.zip\">ViewBased Application<\/a><\/p>\n<blockquote>\n<p>Update:<br>\nHey thanks Alan for your thoughtful comments. I have updated the post accordingly. I really appreciate the time and effort you put in to make the tutorial better for the future readers.<\/p>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Today we will see how to create a View based application from scratch starting with a Window based application. Now one would ask when Xcode gives us a template to create a View Based Application, why create one from scratch. We should do this because a new iPhone developer should know how the template code [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_s2mail":"yes","footnotes":""},"categories":[3],"tags":[34,328,35],"class_list":["post-4069","post","type-post","status-publish","format-standard","hentry","category-iphone","tag-from-scratch","tag-iphone-ipad","tag-viewcontroller-application"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>iPhone: View Based Application from scratch - Mobisoft Infotech<\/title>\n<meta name=\"description\" content=\"Learn how to create a View based iPhone mobile application from scratch starting with a Window based application with the name as ViewBased.\" \/>\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-view-based-application-from-scratch\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"iPhone: View Based Application from scratch - Mobisoft Infotech\" \/>\n<meta property=\"og:description\" content=\"Learn how to create a View based iPhone mobile application from scratch starting with a Window based application with the name as ViewBased.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\" \/>\n<meta property=\"og:site_name\" content=\"Mobisoft Infotech\" \/>\n<meta property=\"article:published_time\" content=\"2010-01-12T07:47:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-27T09:28:52+00:00\" \/>\n<meta name=\"author\" content=\"Pritam Barhate\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pritam Barhate\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 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-view-based-application-from-scratch#article\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\"},\"author\":{\"name\":\"Pritam Barhate\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/fa762036b3364f26abeea146c01487ee\"},\"headline\":\"iPhone: View Based Application from scratch\",\"datePublished\":\"2010-01-12T07:47:06+00:00\",\"dateModified\":\"2024-11-27T09:28:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\"},\"wordCount\":916,\"commentCount\":0,\"keywords\":[\"From Scratch\",\"iPhone \u2013 iPad\",\"ViewController Application\"],\"articleSection\":[\"iPhone - iPad\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\",\"url\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\",\"name\":\"iPhone: View Based Application from scratch - Mobisoft Infotech\",\"isPartOf\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#website\"},\"datePublished\":\"2010-01-12T07:47:06+00:00\",\"dateModified\":\"2024-11-27T09:28:52+00:00\",\"author\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/fa762036b3364f26abeea146c01487ee\"},\"description\":\"Learn how to create a View based iPhone mobile application from scratch starting with a Window based application with the name as ViewBased.\",\"breadcrumb\":{\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mobisoftinfotech.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"iPhone: View Based Application from scratch\"}]},{\"@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\/fa762036b3364f26abeea146c01487ee\",\"name\":\"Pritam Barhate\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/0e481c7ce54b3567ac70ddfc493523eefce0bdc3ee69fd2654f8f60a79e2f178?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0e481c7ce54b3567ac70ddfc493523eefce0bdc3ee69fd2654f8f60a79e2f178?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0e481c7ce54b3567ac70ddfc493523eefce0bdc3ee69fd2654f8f60a79e2f178?s=96&r=g\",\"caption\":\"Pritam Barhate\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"iPhone: View Based Application from scratch - Mobisoft Infotech","description":"Learn how to create a View based iPhone mobile application from scratch starting with a Window based application with the name as ViewBased.","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-view-based-application-from-scratch","og_locale":"en_US","og_type":"article","og_title":"iPhone: View Based Application from scratch - Mobisoft Infotech","og_description":"Learn how to create a View based iPhone mobile application from scratch starting with a Window based application with the name as ViewBased.","og_url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch","og_site_name":"Mobisoft Infotech","article_published_time":"2010-01-12T07:47:06+00:00","article_modified_time":"2024-11-27T09:28:52+00:00","author":"Pritam Barhate","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Pritam Barhate","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#article","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch"},"author":{"name":"Pritam Barhate","@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/fa762036b3364f26abeea146c01487ee"},"headline":"iPhone: View Based Application from scratch","datePublished":"2010-01-12T07:47:06+00:00","dateModified":"2024-11-27T09:28:52+00:00","mainEntityOfPage":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch"},"wordCount":916,"commentCount":0,"keywords":["From Scratch","iPhone \u2013 iPad","ViewController Application"],"articleSection":["iPhone - iPad"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch","url":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch","name":"iPhone: View Based Application from scratch - Mobisoft Infotech","isPartOf":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#website"},"datePublished":"2010-01-12T07:47:06+00:00","dateModified":"2024-11-27T09:28:52+00:00","author":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/#\/schema\/person\/fa762036b3364f26abeea146c01487ee"},"description":"Learn how to create a View based iPhone mobile application from scratch starting with a Window based application with the name as ViewBased.","breadcrumb":{"@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mobisoftinfotech.com\/resources\/blog\/iphone\/iphone-view-based-application-from-scratch#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mobisoftinfotech.com\/resources\/"},{"@type":"ListItem","position":2,"name":"iPhone: View Based Application from scratch"}]},{"@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\/fa762036b3364f26abeea146c01487ee","name":"Pritam Barhate","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0e481c7ce54b3567ac70ddfc493523eefce0bdc3ee69fd2654f8f60a79e2f178?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0e481c7ce54b3567ac70ddfc493523eefce0bdc3ee69fd2654f8f60a79e2f178?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0e481c7ce54b3567ac70ddfc493523eefce0bdc3ee69fd2654f8f60a79e2f178?s=96&r=g","caption":"Pritam Barhate"}}]}},"_links":{"self":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4069","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/comments?post=4069"}],"version-history":[{"count":20,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4069\/revisions"}],"predecessor-version":[{"id":32729,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/posts\/4069\/revisions\/32729"}],"wp:attachment":[{"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/media?parent=4069"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/categories?post=4069"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mobisoftinfotech.com\/resources\/wp-json\/wp\/v2\/tags?post=4069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}