{"id":32701,"date":"2024-11-01T09:10:56","date_gmt":"2024-11-01T09:10:56","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32701"},"modified":"2024-11-01T11:24:48","modified_gmt":"2024-11-01T11:24:48","slug":"developing-iphone-apps-with-swift-and-uikit-installing-pins-in-our-home","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32701\/","title":{"rendered":"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home"},"content":{"rendered":"<p><body><\/p>\n<p>Swift is a programming language created by Apple, widely used for app development on iOS and macOS platforms. UIKIT is the main framework for iOS that plays an essential role in building the app&#8217;s user interface. This tutorial will provide a detailed explanation of how to develop an iPhone app that allows you to place a pin representing your home using Swift and UIKIT.<\/p>\n<h2>1. Project Preparation<\/h2>\n<p>To develop the app, the first step is to install Xcode. Xcode is Apple&#8217;s official IDE, a tool necessary for writing Swift code and developing applications based on UIKIT.<\/p>\n<h3>1.1 Installing Xcode<\/h3>\n<p>Xcode can be downloaded for free from the Mac App Store. Once the installation is complete, you need to create a new project.<\/p>\n<h3>1.2 Creating a New Project<\/h3>\n<p>Open Xcode and select <strong>\u201cCreate a new Xcode project\u201d<\/strong>. Next, choose <strong>\u201cApp\u201d<\/strong> under <strong>\u201ciOS\u201d<\/strong> and click <strong>\u201cNext\u201d<\/strong>.<\/p>\n<ul>\n<li><strong>Product Name<\/strong>: PinYourHome<\/li>\n<li><strong>Team<\/strong>: Select personal or team account<\/li>\n<li><strong>Organization Name<\/strong>: Your name or company name<\/li>\n<li><strong>Organization Identifier<\/strong>: com.yourname (unique identifier)<\/li>\n<li><strong>Interface<\/strong>: Storyboard<\/li>\n<li><strong>Language<\/strong>: Swift<\/li>\n<li><strong>Use Core Data<\/strong>: Uncheck (not used in this example)<\/li>\n<li><strong>Include Tests<\/strong>: Uncheck<\/li>\n<\/ul>\n<p>After setting all the fields, click <strong>\u201cNext\u201d<\/strong>, choose a location to save the project, and click <strong>\u201cCreate\u201d<\/strong>.<\/p>\n<h2>2. Designing the UI<\/h2>\n<p>The basic UI of the app consists of a simple map and a button to add a pin. To design the UI, you need to modify the Main.storyboard file.<\/p>\n<h3>2.1 Adding a Map<\/h3>\n<p>Use the <code>MKMapView<\/code> from UIKIT to add a map view.<\/p>\n<ul>\n<li>Open the Main.storyboard file and search for <code>Map Kit<\/code> in the <strong>Object Library<\/strong>.<\/li>\n<li>Drag <code>MKMapView<\/code> to the ViewController\u2019s view.<\/li>\n<li>Set constraints to make the map view full-screen according to common use in Korea.<\/li>\n<\/ul>\n<h3>2.2 Adding a Button<\/h3>\n<p>Add a button that allows users to add a pin.<\/p>\n<ul>\n<li>Search for <code>UIButton<\/code> in the Object Library and place it at the bottom of the ViewController.<\/li>\n<li>Set the button&#8217;s title to <code>\u201cAdd Pin\u201d<\/code>.<\/li>\n<li>Set constraints to position the button at the center bottom of the screen.<\/li>\n<\/ul>\n<h2>3. Writing the Code<\/h2>\n<p>Now, open the ViewController.swift file to implement the app&#8217;s functionality. The goal is to place a pin on the map each time the user clicks the button.<\/p>\n<h3>3.1 Importing MapKit<\/h3>\n<p>Add <code>import MapKit<\/code> at the top to use MapKit in the view.<\/p>\n<pre><code>import UIKit\nimport MapKit\n<\/code><\/pre>\n<h3>3.2 Modifying the ViewController Class<\/h3>\n<p>Modify the default <code>ViewController<\/code> class to set up the map and button.<\/p>\n<pre><code>class ViewController: UIViewController {\n    \n    @IBOutlet weak var mapView: MKMapView!\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \/\/ Initial map setup\n        let initialLocation = CLLocationCoordinate2D(latitude: 37.5665, longitude: 126.978)\n        let region = MKCoordinateRegion(center: initialLocation, latitudinalMeters: 1000, longitudinalMeters: 1000)\n        mapView.setRegion(region, animated: true)\n    }\n\n    @IBAction func addPin(_ sender: UIButton) {\n        let pinLocation = CLLocationCoordinate2D(latitude: 37.5665, longitude: 126.978) \/\/ Default location\n        let annotation = MKPointAnnotation()\n        annotation.coordinate = pinLocation\n        annotation.title = \"Our Home\"\n        mapView.addAnnotation(annotation)\n    }\n}\n<\/code><\/pre>\n<h2>4. Testing the Pin Addition Feature<\/h2>\n<p>After writing the above code, you can run the app to test the pin addition feature.<\/p>\n<ol>\n<li>In Xcode&#8217;s top menu, click <strong>Product<\/strong> &gt; <strong>Run<\/strong> or use the <code>\u2318R<\/code> shortcut to build and run the app.<\/li>\n<li>Once the app runs, you will see the map and the \u201cAdd Pin\u201d button.<\/li>\n<li>Click the button multiple times to add pins.<\/li>\n<\/ol>\n<h2>5. Data Saving and Loading<\/h2>\n<p>To save the pin locations, you can use a simple database to record the pins added by the users. For example, you can use UserDefaults to store simple data.<\/p>\n<h3>5.1 Understanding UserDefaults<\/h3>\n<p>UserDefaults is a useful method for saving and reading simple data. To use this information persistently, the data must remain even when the app is restarted.<\/p>\n<h3>5.2 Saving Pin Locations<\/h3>\n<pre><code>extension ViewController {\n    func savePinLocations() {\n        let userDefaults = UserDefaults.standard\n        let pinLocations = mapView.annotations.map { [\"latitude\": $0.coordinate.latitude, \"longitude\": $0.coordinate.longitude] }\n        userDefaults.set(pinLocations, forKey: \"savedPins\")\n    }\n\n    func loadPinLocations() {\n        let userDefaults = UserDefaults.standard\n        if let savedPins = userDefaults.array(forKey: \"savedPins\") as? [[String: Double]] {\n            for pin in savedPins {\n                let annotation = MKPointAnnotation()\n                annotation.coordinate = CLLocationCoordinate2D(latitude: pin[\"latitude\"]!, longitude: pin[\"longitude\"]!)\n                mapView.addAnnotation(annotation)\n            }\n        }\n    }\n}\n<\/code><\/pre>\n<p>Call the above methods in <code>viewDidLoad()<\/code> to load the saved pins when the app starts.<\/p>\n<pre><code>override func viewDidLoad() {\n        super.viewDidLoad()\n        \/\/ Existing code ...\n        loadPinLocations()\n    }\n\n    @IBAction func addPin(_ sender: UIButton) {\n        \/\/ Existing code ...\n        savePinLocations()\n    }\n<\/code><\/pre>\n<h2>6. Expanding App Functionality<\/h2>\n<p>The current app has the basic pin addition feature, but several enhancements can be made to provide a better user experience.<\/p>\n<h3>6.1 Viewing Pin Details<\/h3>\n<p>When the user clicks a pin, you can display details about the pin (e.g., name, description). To do this, implement the <code>mapView(_:didSelect:)<\/code> method.<\/p>\n<pre><code>extension ViewController: MKMapViewDelegate {\n    func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {\n        let alert = UIAlertController(title: view.annotation?.title ?? \"\", message: \"Description of the pin\", preferredStyle: .alert)\n        alert.addAction(UIAlertAction(title: \"OK\", style: .default, handler: nil))\n        present(alert, animated: true)\n    }\n}\n<\/code><\/pre>\n<h3>6.2 Adding a Pin Deletion Feature<\/h3>\n<p>It would be beneficial to provide a feature that allows users to delete added pins. You can connect the pin deletion functionality by implementing the <code>mapView(_:annotationView:calloutAccessoryControlTapped:)<\/code> method.<\/p>\n<pre><code>extension ViewController: MKMapViewDelegate {\n    func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped accessoryControl: UIControl) {\n        mapView.removeAnnotation(view.annotation!)\n    }\n}\n<\/code><\/pre>\n<h2>7. Building and Distributing the App<\/h2>\n<p>After implementing the basic pin addition and data saving features, you need to prepare the app for submission to the App Store. Follow Apple&#8217;s various guidelines to proceed with the submission process.<\/p>\n<h3>7.1 Preparing for the App Store<\/h3>\n<p>You need to prepare the app&#8217;s icon, screenshots, and metadata, and upload the app to App Store Connect. Proper preparation is required for this.<\/p>\n<h3>7.2 Testing and Getting Feedback<\/h3>\n<p>Recruit beta testers to receive feedback, which is essential for improving the app based on the feedback.<\/p>\n<h2>Conclusion<\/h2>\n<p>This tutorial covered the process of creating a simple iPhone app with a pin addition feature using Swift and UIKIT. By applying various concepts and technologies encountered during the app development process, I hope you create your own app. Additionally, consider implementing more features to complete your own project!<\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/developer.apple.com\/documentation\/swift\">Swift Official Documentation<\/a><\/li>\n<li><a href=\"https:\/\/developer.apple.com\/documentation\/uikit\">UIKit Official Documentation<\/a><\/li>\n<li><a href=\"https:\/\/developer.apple.com\/documentation\/mapkit\">MapKit Official Documentation<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Swift is a programming language created by Apple, widely used for app development on iOS and macOS platforms. UIKIT is the main framework for iOS that plays an essential role in building the app&#8217;s user interface. This tutorial will provide a detailed explanation of how to develop an iPhone app that allows you to place &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32701\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[127],"tags":[],"class_list":["post-32701","post","type-post","status-publish","format-standard","hentry","category-swift-iphone-app-development-uikit"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/32701\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Swift is a programming language created by Apple, widely used for app development on iOS and macOS platforms. UIKIT is the main framework for iOS that plays an essential role in building the app&#8217;s user interface. This tutorial will provide a detailed explanation of how to develop an iPhone app that allows you to place &hellip; \ub354 \ubcf4\uae30 &quot;Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32701\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:10:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:24:48+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/32701\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32701\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home\",\"datePublished\":\"2024-11-01T09:10:56+00:00\",\"dateModified\":\"2024-11-01T11:24:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32701\/\"},\"wordCount\":763,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Swift iPhone app development (UIKit)\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32701\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32701\/\",\"name\":\"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:10:56+00:00\",\"dateModified\":\"2024-11-01T11:24:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32701\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32701\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32701\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/32701\/","og_locale":"ko_KR","og_type":"article","og_title":"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Swift is a programming language created by Apple, widely used for app development on iOS and macOS platforms. UIKIT is the main framework for iOS that plays an essential role in building the app&#8217;s user interface. This tutorial will provide a detailed explanation of how to develop an iPhone app that allows you to place &hellip; \ub354 \ubcf4\uae30 \"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home\"","og_url":"https:\/\/atmokpo.com\/w\/32701\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:10:56+00:00","article_modified_time":"2024-11-01T11:24:48+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/32701\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32701\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home","datePublished":"2024-11-01T09:10:56+00:00","dateModified":"2024-11-01T11:24:48+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32701\/"},"wordCount":763,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Swift iPhone app development (UIKit)"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32701\/","url":"https:\/\/atmokpo.com\/w\/32701\/","name":"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:10:56+00:00","dateModified":"2024-11-01T11:24:48+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32701\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32701\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32701\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Developing iPhone Apps with Swift and UIKit: Installing Pins in Our Home"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32701","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=32701"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32701\/revisions"}],"predecessor-version":[{"id":32702,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32701\/revisions\/32702"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32701"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32701"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32701"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}