{"id":1005,"date":"2022-07-14T05:23:00","date_gmt":"2023-05-03T00:02:05","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/uncategorized\/ios-progress-bar-also-known-as-progress-view\/"},"modified":"2025-07-18T16:50:35","modified_gmt":"2025-07-18T16:50:35","slug":"ios-progress-bar-also-known-as-progress-view","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/","title":{"rendered":"Progress Bar iOS also known as Progress View"},"content":{"rendered":"<p>In this lesson, we will talk about the UIProgressView element and build a progress bar for our iOS App.<\/p>\n<h2>Progress bar on <a href=\"https:\/\/en.wikipedia.org\/wiki\/IOS\">iOS<\/a> &#8211; UIProgressView<\/h2>\n<p>The ProgressView is a crucial user interface element used to display the progress of any lengthy activity such as downloading, uploading, or waiting for a response from a web service. Its absence could lead users to believe that the application is unresponsive. To add the UIProgressView to our Main.storyboard in XCode, we need to launch a Single View iOS Application. The ProgressView&#8217;s value can range from 0.0 to 1.0 and is represented by the color blue. Values outside this range will be rounded to the nearest value depending on whether they are greater than 1.0 or less than 0.0.<\/p>\n<h2>Properties of the <a href=\"https:\/\/en.wikipedia.org\/wiki\/IOS\">iOS<\/a> Progress View<\/h2>\n<p>ProgressView has the subsequent characteristics:<\/p>\n<ul class=\"post-ul\">\n<li>progressTintColor &#8211; Used to change the UIColor of the progress part i.e. the filled part in the ProgressView.<\/li>\n<li>trackTintColor &#8211; Used to change the UIColor of the track i.e. the unfilled part of the ProgressView.<\/li>\n<li>ProgressBarStyle &#8211; There are two styles: default and bar. The bar style has a transparent track.<\/li>\n<li>trackImage &#8211; Here an image is used instead of color for the unfilled part.<\/li>\n<li>progressImage &#8211; Image is used to show the progress.<\/li>\n<\/ul>\n<p>We can start executing our plan now. In our Main.storyboard, there is a button that controls the ProgressView, allowing us to start or stop it. Below is the code for the ViewController.swift class.<\/p>\n<pre class=\"post-pre\"><code>import UIKit\r\n\r\nclass ViewController: UIViewController {\r\n\r\n    @IBOutlet weak var btn: UIButton!\r\n    var isRed = false\r\n    var progressBarTimer: Timer!\r\n    var isRunning = false\r\n    @IBAction func btnStart(_ sender: Any) {\r\n        \r\n        if(isRunning){\r\n            progressBarTimer.invalidate()\r\n            btn.setTitle(\"Start\", for: .normal)\r\n        }\r\n        else{\r\n        btn.setTitle(\"Stop\", for: .normal)\r\n        progressView.progress = 0.0\r\n        self.progressBarTimer = Timer.scheduledTimer(timeInterval: 0.5, target: self, selector: #selector(ViewController.updateProgressView), userInfo: nil, repeats: true)\r\n        if(isRed){\r\n            progressView.progressTintColor = UIColor.blue\r\n            progressView.progressViewStyle = .default\r\n        }\r\n        else{\r\n            progressView.progressTintColor = UIColor.red\r\n            progressView.progressViewStyle = .bar\r\n            \r\n        }\r\n        isRed = !isRed\r\n        }\r\n        isRunning = !isRunning\r\n    }\r\n    @IBOutlet weak var progressView: UIProgressView!\r\n    override func viewDidLoad() {\r\n        super.viewDidLoad()\r\n        \/\/ Do any additional setup after loading the view, typically from a nib.\r\n        progressView.progress = 0.0\r\n    }\r\n\r\n    override func didReceiveMemoryWarning() {\r\n        super.didReceiveMemoryWarning()\r\n        \/\/ Dispose of any resources that can be recreated.\r\n    }\r\n    \r\n    @objc func updateProgressView(){\r\n        progressView.progress += 0.1\r\n        progressView.setProgress(progressView.progress, animated: true)\r\n        if(progressView.progress == 1.0)\r\n        {\r\n            progressBarTimer.invalidate()\r\n            isRunning = false\r\n            btn.setTitle(\"Start\", for: .normal)\r\n        }\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>By connecting the views in the Main.storyboard to the Swift file, IBOutlet and IBActions are generated. When the Button is pressed, a Timer is initiated, which modifies the progress bar using the selector function called updateProgressView. Each alternate timer changes the style of the ProgressView. The outcome of running the aforementioned application on the simulator is displayed below.<\/p>\n<h3>Raising the ProgressView&#8217;s height<\/h3>\n<p>To modify the ProgressView&#8217;s height, we can proceed as follows:<\/p>\n<pre class=\"post-pre\"><code>progressView.transform = progressView.transform.scaledBy(x: 1, y: 8)\r\n<\/code><\/pre>\n<p>This changes the height by a factor of 8. Let&#8217;s observe its appearance in the simulator. Additionally, you have the option to modify the height from the storyboard using the constraints. The second method is preferable because the first one could potentially result in pixelation of the ProgressView when altering the edges.<\/p>\n<h3>Progress bar with curved corners.<\/h3>\n<p>Insert the given code within the viewDidLoad() method.<\/p>\n<pre class=\"post-pre\"><code>override func viewDidLoad() {\r\n        super.viewDidLoad()\r\n        \/\/ Do any additional setup after loading the view, typically from a nib.\r\n        progressView.progress = 0.0\r\n        \r\n        progressView.layer.cornerRadius = 10\r\n        progressView.clipsToBounds = true\r\n        progressView.layer.sublayers![1].cornerRadius = 10\r\n        progressView.subviews[1].clipsToBounds = true\r\n    }\r\n<\/code><\/pre>\n<p>We have adjusted the corner radius of the ProgressView to be equal to half of its height. Here is the result of the application after implementing the modified code. This concludes the tutorial, and you can obtain the project by clicking on the provided link.<\/p>\n<p>ProgressView for iOS<\/p>\n<p>&nbsp;<\/p>\n<p>Other tutorial<\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/jquery-tree-traversal-functions\/\" target=\"_blank\" rel=\"noopener\">jQuery parent() and children() tree traversal functions<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/spring-mvc-handlerinterceptoradapter-and-handlerinterceptor\/\" target=\"_blank\" rel=\"noopener\">Spring MVC HandlerInterceptorAdapter and HandlerInterceptor.<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\" target=\"_blank\" rel=\"noopener\">Installation of Arch Linux<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/multithreading-in-java-that-you-need-to-know\/\" target=\"_blank\" rel=\"noopener\">multithreading in Java that you need to know<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/broadcastreceiver-android-tutor\/\" target=\"_blank\" rel=\"noopener\">BroadcastReceiver Example Tutorial on Android<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this lesson, we will talk about the UIProgressView element and build a progress bar for our iOS App. Progress bar on iOS &#8211; UIProgressView The ProgressView is a crucial user interface element used to display the progress of any lengthy activity such as downloading, uploading, or waiting for a response from a web service. [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[244,240,238,242,243,241,239,245],"class_list":["post-1005","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-ios-app-development","tag-ios-development","tag-ios-progress-bar-uiprogressview","tag-ios-ui-components","tag-progress-bar-tutorial","tag-swift-programming","tag-uiprogressview","tag-xcode-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Progress Bar iOS also known as Progress View - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Complete iOS Progress Bar UIProgressView tutorial. Learn to create custom progress bars with Swift code examples, styling, and animation techniques for iOS apps.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Progress Bar iOS also known as Progress View\" \/>\n<meta property=\"og:description\" content=\"Complete iOS Progress Bar UIProgressView tutorial. Learn to create custom progress bars with Swift code examples, styling, and animation techniques for iOS apps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-03T00:02:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-18T16:50:35+00:00\" \/>\n<meta name=\"author\" content=\"Liam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Liam\" \/>\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:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\"},\"author\":{\"name\":\"Liam\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671\"},\"headline\":\"Progress Bar iOS also known as Progress View\",\"datePublished\":\"2023-05-03T00:02:05+00:00\",\"dateModified\":\"2025-07-18T16:50:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\"},\"wordCount\":502,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"keywords\":[\"iOS app development\",\"iOS development\",\"iOS Progress Bar UIProgressView\",\"iOS UI components\",\"progress bar tutorial\",\"Swift programming\",\"UIProgressView\",\"Xcode tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\",\"name\":\"Progress Bar iOS also known as Progress View - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2023-05-03T00:02:05+00:00\",\"dateModified\":\"2025-07-18T16:50:35+00:00\",\"description\":\"Complete iOS Progress Bar UIProgressView tutorial. Learn to create custom progress bars with Swift code examples, styling, and animation techniques for iOS apps.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Progress Bar iOS also known as Progress View\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671\",\"name\":\"Liam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g\",\"caption\":\"Liam\"},\"sameAs\":[\"http:\/\/Wilson\"],\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/liamwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Progress Bar iOS also known as Progress View - Blog - Silicon Cloud","description":"Complete iOS Progress Bar UIProgressView tutorial. Learn to create custom progress bars with Swift code examples, styling, and animation techniques for iOS apps.","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:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/","og_locale":"en_US","og_type":"article","og_title":"Progress Bar iOS also known as Progress View","og_description":"Complete iOS Progress Bar UIProgressView tutorial. Learn to create custom progress bars with Swift code examples, styling, and animation techniques for iOS apps.","og_url":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2023-05-03T00:02:05+00:00","article_modified_time":"2025-07-18T16:50:35+00:00","author":"Liam","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Liam","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/"},"author":{"name":"Liam","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671"},"headline":"Progress Bar iOS also known as Progress View","datePublished":"2023-05-03T00:02:05+00:00","dateModified":"2025-07-18T16:50:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/"},"wordCount":502,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"keywords":["iOS app development","iOS development","iOS Progress Bar UIProgressView","iOS UI components","progress bar tutorial","Swift programming","UIProgressView","Xcode tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/","url":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/","name":"Progress Bar iOS also known as Progress View - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2023-05-03T00:02:05+00:00","dateModified":"2025-07-18T16:50:35+00:00","description":"Complete iOS Progress Bar UIProgressView tutorial. Learn to create custom progress bars with Swift code examples, styling, and animation techniques for iOS apps.","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/ios-progress-bar-also-known-as-progress-view\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Progress Bar iOS also known as Progress View"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671","name":"Liam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g","caption":"Liam"},"sameAs":["http:\/\/Wilson"],"url":"https:\/\/www.silicloud.com\/blog\/author\/liamwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1005","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=1005"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1005\/revisions"}],"predecessor-version":[{"id":1664,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1005\/revisions\/1664"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=1005"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=1005"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=1005"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}