{"id":39236,"date":"2024-11-02T03:38:44","date_gmt":"2024-11-02T03:38:44","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=39236"},"modified":"2024-11-26T06:42:03","modified_gmt":"2024-11-26T06:42:03","slug":"pyqt%ea%b0%9c%eb%b0%9c%ea%b0%95%ec%a2%8c-%ed%83%ad-%eb%8f%99%ec%a0%81-%ec%83%9d%ec%84%b1%ea%b3%bc-%ec%82%ad%ec%a0%9c","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/39236\/","title":{"rendered":"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c"},"content":{"rendered":"<p><body><\/p>\n<p>\n        PyQt\ub294 \ud30c\uc774\uc36c\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud55c \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. Qt\ub294 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI) \uac1c\ubc1c\uc744 \uc704\ud55c \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \uc704\uc82f\uc744 \uc81c\uacf5\ud558\ub294 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\ub97c \uc774\uc6a9\ud558\uc5ec \ud0ed\uc744 \ub3d9\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uace0 \uc0ad\uc81c\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>1. PyQt \uc124\uce58\ud558\uae30<\/h2>\n<p>\n        PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \uba3c\uc800 PyQt5 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip \uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798 \uba85\ub839\uc5b4\ub97c \ud130\ubbf8\ub110 \ub610\ub294 \ucee4\ub9e8\ub4dc \ud504\ub86c\ud504\ud2b8\uc5d0 \uc785\ub825\ud558\uc5ec PyQt5\ub97c \uc124\uce58\ud558\uc138\uc694.\n    <\/p>\n<pre><code>pip install PyQt5<\/code><\/pre>\n<h2>2. \uae30\ubcf8\uc801\uc778 \ud0ed \uc704\uc82f \uc774\ud574\ud558\uae30<\/h2>\n<p>\n        PyQt\uc5d0\uc11c\ub294 <code>QTabWidget<\/code> \ud074\ub798\uc2a4\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud0ed UI\ub97c \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. <code>QTabWidget<\/code>\ub294 \uc5ec\ub7ec \uac1c\uc758 \ud0ed\uc744 \ud3ec\ud568\ud560 \uc218 \uc788\uc73c\uba70, \uac01 \ud0ed\ub9c8\ub2e4 \ub2e4\uc591\ud55c \uc704\uc82f\ub4e4\uc744 \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc778 \uad6c\uc870\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre><code>from PyQt5.QtWidgets import QApplication, QTabWidget, QWidget, QVBoxLayout, QPushButton<\/code><\/pre>\n<h2>3. \ud0ed \ub3d9\uc801 \uc0dd\uc131\ud558\uae30<\/h2>\n<p>\n        \ud0ed\uc744 \ub3d9\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uae30 \uc704\ud574\uc11c\ub294 \ubc84\ud2bc \ud074\ub9ad \uc774\ubca4\ud2b8\uc640 \ud568\uaed8 \uc0c8\ub85c\uc6b4 \ud0ed\uc744 \ucd94\uac00\ud558\ub294 \uae30\ub2a5\uc744 \uad6c\ud604\ud574\uc57c \ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \uc608\uc81c \ucf54\ub4dc\ub97c \ud655\uc778\ud574\ubcf4\uc138\uc694.\n    <\/p>\n<pre><code>class MyApp(QTabWidget):\n    def __init__(self):\n        super().__init__()\n        self.setWindowTitle('Dynamic Tab Example')\n        self.setGeometry(200, 200, 400, 300)\n\n        # \ucd08\uae30 \ud0ed \uc0dd\uc131\n        self.add_new_tab()\n\n        # \ud0ed \ucd94\uac00 \ubc84\ud2bc\n        add_tab_button = QPushButton('Add Tab')\n        add_tab_button.clicked.connect(self.add_new_tab)\n        self.layout = QVBoxLayout()\n        self.layout.addWidget(add_tab_button)\n\n        # \uba54\uc778 \uc704\uc82f \uc124\uc815\n        container = QWidget()\n        container.setLayout(self.layout)\n        self.setCentralWidget(container)\n\n    def add_new_tab(self):\n        tab_count = self.count()\n        self.addTab(QWidget(), f'Tab {tab_count + 1}')  # \uc0c8\ub85c\uc6b4 \ud0ed \ucd94\uac00\n<\/code><\/pre>\n<h2>4. \ud0ed \uc0ad\uc81c\ud558\uae30<\/h2>\n<p>\n        \ud0ed\uc744 \uc0ad\uc81c\ud558\uae30 \uc704\ud574\uc11c\ub294 \uc0ad\uc81c \ubc84\ud2bc\uc744 \ub9cc\ub4e4\uc5b4 \ud574\ub2f9 \ubc84\ud2bc\uc744 \ud074\ub9ad\ud588\uc744 \ub54c \uc120\ud0dd\ub41c \ud0ed\uc744 \uc0ad\uc81c\ud558\ub294 \uae30\ub2a5\uc744 \ucd94\uac00\ud574\uc57c \ud569\ub2c8\ub2e4. \uc544\ub798\uc758 \ucf54\ub4dc\ub97c \ud1b5\ud574 \uc0ad\uc81c \ubc84\ud2bc\uc758 \uae30\ub2a5\uc744 \uad6c\ud604\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre><code>        # \ud0ed \uc0ad\uc81c \ubc84\ud2bc\n        remove_tab_button = QPushButton('Remove Tab')\n        remove_tab_button.clicked.connect(self.remove_current_tab)\n        self.layout.addWidget(remove_tab_button)\n\n    def remove_current_tab(self):\n        current_index = self.currentIndex()\n        if current_index &gt;= 0:\n            self.removeTab(current_index)  # \ud604\uc7ac \uc120\ud0dd\ub41c \ud0ed \uc0ad\uc81c\n<\/code><\/pre>\n<h2>5. \uc804\uccb4 \ucf54\ub4dc \uc608\uc81c<\/h2>\n<p>\n        \uc774\uc804\uc5d0 \uc124\uba85\ud55c \ub0b4\uc6a9\uc744 \uae30\ubc18\uc73c\ub85c \uc804\uccb4 \ucf54\ub4dc\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. \uc774 \ucf54\ub4dc\ub294 \uae30\ubcf8\uc801\uc778 \ud0ed \ucd94\uac00 \ubc0f \uc0ad\uc81c \uae30\ub2a5\uc744 \ud3ec\ud568\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre><code>import sys\nfrom PyQt5.QtWidgets import QApplication, QTabWidget, QWidget, QVBoxLayout, QPushButton\n\nclass MyApp(QTabWidget):\n    def __init__(self):\n        super().__init__()\n        self.setWindowTitle('Dynamic Tab Example')\n        self.setGeometry(200, 200, 400, 300)\n\n        self.add_new_tab()\n\n        add_tab_button = QPushButton('Add Tab')\n        add_tab_button.clicked.connect(self.add_new_tab)\n        \n        remove_tab_button = QPushButton('Remove Tab')\n        remove_tab_button.clicked.connect(self.remove_current_tab)\n\n        self.layout = QVBoxLayout()\n        self.layout.addWidget(add_tab_button)\n        self.layout.addWidget(remove_tab_button)\n\n        container = QWidget()\n        container.setLayout(self.layout)\n        self.setCentralWidget(container)\n\n    def add_new_tab(self):\n        tab_count = self.count()\n        self.addTab(QWidget(), f'Tab {tab_count + 1}')\n\n    def remove_current_tab(self):\n        current_index = self.currentIndex()\n        if current_index &gt;= 0:\n            self.removeTab(current_index)\n\nif __name__ == '__main__':\n    app = QApplication(sys.argv)\n    my_app = MyApp()\n    my_app.show()\n    sys.exit(app.exec_())\n<\/code><\/pre>\n<h2>6. \ucd94\uac00 \uae30\ub2a5: \ud0ed \ub0b4\uc6a9 \ubcc0\uacbd\ud558\uae30<\/h2>\n<p>\n        \ud0ed\uc744 \uc0ad\uc81c\ud558\uace0 \ucd94\uac00\ud558\ub294 \uac83 \uc678\uc5d0\ub3c4, \uac01 \ud0ed\uc758 \ub0b4\uc6a9\uc744 \ubcc0\uacbd\ud558\uac70\ub098 \ud0ed\uc5d0 \uc704\uc82f\uc744 \ucd94\uac00\ud558\ub294 \ub4f1\uc758 \uae30\ub2a5\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uac01 \ud0ed\uc5d0 \ub2e4\ub978 \uc885\ub958\uc758 \uc704\uc82f\uc744 \ucd94\uac00\ud558\uc5ec \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \uc81c\uacf5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre><code>def add_new_tab(self):\n        tab_count = self.count()\n        new_tab = QWidget()\n        layout = QVBoxLayout()\n        text_label = QLabel(f'This is content for Tab {tab_count + 1}')\n        layout.addWidget(text_label)\n        new_tab.setLayout(layout)\n        self.addTab(new_tab, f'Tab {tab_count + 1}')\n<\/code><\/pre>\n<h2>7. \uacb0\ub860<\/h2>\n<p>\n        \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\ub97c \uc774\uc6a9\ud558\uc5ec \ud0ed\uc744 \ub3d9\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uace0 \uc0ad\uc81c\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc778 UI \uad6c\uc131 \uc694\uc18c\uc5d0 \ub300\ud55c \uc774\ud574\ub97c \ubc14\ud0d5\uc73c\ub85c, \uc5ec\ub7ec\ubd84\uc740 \uc774\uc81c \ub354 \ubcf5\uc7a1\ud55c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc124\uacc4\ud558\uace0 \uad6c\ud604\ud560 \uc218 \uc788\ub294 \ub2a5\ub825\uc744 \uac16\ucd94\uac8c \ub418\uc5c8\uc2b5\ub2c8\ub2e4. \ud5a5\ud6c4\uc5d0\ub294 \ub2e4\uc591\ud55c PyQt\uc758 \uae30\ub2a5\ub4e4\uc744 \ud0d0\uad6c\ud558\uace0, \uc790\uc2e0\ub9cc\uc758 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud574\ubcf4\uae38 \ubc14\ub78d\ub2c8\ub2e4.\n    <\/p>\n<footer>\n<p>\uac10\uc0ac\ud569\ub2c8\ub2e4! PyQt\ub97c \uc0ac\uc6a9\ud55c \uac1c\ubc1c\uc744 \uc990\uae30\uc138\uc694!<\/p>\n<\/footer>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PyQt\ub294 \ud30c\uc774\uc36c\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud55c \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. Qt\ub294 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI) \uac1c\ubc1c\uc744 \uc704\ud55c \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \uc704\uc82f\uc744 \uc81c\uacf5\ud558\ub294 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\ub97c \uc774\uc6a9\ud558\uc5ec \ud0ed\uc744 \ub3d9\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uace0 \uc0ad\uc81c\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. PyQt \uc124\uce58\ud558\uae30 PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \uba3c\uc800 PyQt5 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip \uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798 \uba85\ub839\uc5b4\ub97c \ud130\ubbf8\ub110 \ub610\ub294 \ucee4\ub9e8\ub4dc \ud504\ub86c\ud504\ud2b8\uc5d0 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/39236\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c&#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":[193],"tags":[],"class_list":["post-39236","post","type-post","status-publish","format-standard","hentry","category-pyqt"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c - \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\/39236\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"PyQt\ub294 \ud30c\uc774\uc36c\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud55c \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. Qt\ub294 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI) \uac1c\ubc1c\uc744 \uc704\ud55c \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \uc704\uc82f\uc744 \uc81c\uacf5\ud558\ub294 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\ub97c \uc774\uc6a9\ud558\uc5ec \ud0ed\uc744 \ub3d9\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uace0 \uc0ad\uc81c\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. PyQt \uc124\uce58\ud558\uae30 PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \uba3c\uc800 PyQt5 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip \uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798 \uba85\ub839\uc5b4\ub97c \ud130\ubbf8\ub110 \ub610\ub294 \ucee4\ub9e8\ub4dc \ud504\ub86c\ud504\ud2b8\uc5d0 &hellip; \ub354 \ubcf4\uae30 &quot;PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/39236\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-02T03:38:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:42:03+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=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/39236\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39236\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c\",\"datePublished\":\"2024-11-02T03:38:44+00:00\",\"dateModified\":\"2024-11-26T06:42:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39236\/\"},\"wordCount\":17,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"PyQt\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/39236\/\",\"url\":\"https:\/\/atmokpo.com\/w\/39236\/\",\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-02T03:38:44+00:00\",\"dateModified\":\"2024-11-26T06:42:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39236\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/39236\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/39236\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c\"}]},{\"@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":"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c - \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\/39236\/","og_locale":"ko_KR","og_type":"article","og_title":"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"PyQt\ub294 \ud30c\uc774\uc36c\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud55c \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. Qt\ub294 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI) \uac1c\ubc1c\uc744 \uc704\ud55c \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \uc704\uc82f\uc744 \uc81c\uacf5\ud558\ub294 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\ub97c \uc774\uc6a9\ud558\uc5ec \ud0ed\uc744 \ub3d9\uc801\uc73c\ub85c \uc0dd\uc131\ud558\uace0 \uc0ad\uc81c\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. PyQt \uc124\uce58\ud558\uae30 PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \uba3c\uc800 PyQt5 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip \uba85\ub839\uc5b4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798 \uba85\ub839\uc5b4\ub97c \ud130\ubbf8\ub110 \ub610\ub294 \ucee4\ub9e8\ub4dc \ud504\ub86c\ud504\ud2b8\uc5d0 &hellip; \ub354 \ubcf4\uae30 \"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c\"","og_url":"https:\/\/atmokpo.com\/w\/39236\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-02T03:38:44+00:00","article_modified_time":"2024-11-26T06:42:03+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":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/39236\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/39236\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c","datePublished":"2024-11-02T03:38:44+00:00","dateModified":"2024-11-26T06:42:03+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/39236\/"},"wordCount":17,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["PyQt"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/39236\/","url":"https:\/\/atmokpo.com\/w\/39236\/","name":"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-02T03:38:44+00:00","dateModified":"2024-11-26T06:42:03+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/39236\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/39236\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/39236\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"PyQt\uac1c\ubc1c\uac15\uc88c, \ud0ed \ub3d9\uc801 \uc0dd\uc131\uacfc \uc0ad\uc81c"}]},{"@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":[{"id":39284,"url":"https:\/\/atmokpo.com\/w\/39284\/","url_meta":{"origin":39236,"position":0},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, MacOS Spotlight \uac19\uc740 \uae30\ub2a5 \uad6c\ud604, \ud14d\uc2a4\ud2b8\uc640 \ub9c1\ud06c \ub4f1\uc744 \ud3ec\ud568\ud55c \uc815\ubcf4 \ub808\uc774\uc5b4 \ucd94\uac00","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 PyQt\ub294 Python \ud504\ub85c\uadf8\ub798\uba38\ub4e4\uc774 Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \ud65c\uc6a9\ud558\uc5ec \uac15\ub825\ud558\uace0 \uc9c1\uad00\uc801\uc778 GUI(Graphical User Interface) \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 MacOS\uc758 Spotlight\uc640 \uc720\uc0ac\ud55c \uae30\ub2a5\uc744 \uad6c\ud604\ud574\ubcfc \uac83\uc785\ub2c8\ub2e4. Spotlight\ub294 \uc0ac\uc6a9\uc790\uac00 \ud544\uc694\ub85c \ud558\ub294 \uc815\ubcf4\ub97c \ube60\ub974\uac8c \ucc3e\uc744 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uc774\uc640 \uc720\uc0ac\ud55c \uac80\uc0c9 \uae30\ub2a5\uc744\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":39132,"url":"https:\/\/atmokpo.com\/w\/39132\/","url_meta":{"origin":39236,"position":1},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, QSequentialAnimationGroup\uacfc QParallelAnimationGroup","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c \uc11c\ub860 PyQt\ub294 Python\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \uac00\ub2a5\ud558\uac8c \ud558\ub294 \uac00\uc7a5 \uc778\uae30 \uc788\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. PyQt\ub97c \ud65c\uc6a9\ud558\uba74 \ubcf5\uc7a1\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ud6a8\uc728\uc801\uc73c\ub85c \uc81c\uc791\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc560\ub2c8\uba54\uc774\uc158\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \ubcf4\ub2e4 \uc9c1\uad00\uc801\uc774\uace0 \ub9e4\ub825\uc801\uc73c\ub85c \ub9cc\ub4dc\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. QSequentialAnimationGroup\uacfc QParallelAnimationGroup\uc740 PyQt\uc5d0\uc11c \uc560\ub2c8\uba54\uc774\uc158\uc744 \ud6a8\uacfc\uc801\uc73c\ub85c \uad00\ub9ac\ud558\uae30 \uc704\ud55c \ub450 \uac00\uc9c0 \uc911\uc694\ud55c\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25914,"url":"https:\/\/atmokpo.com\/w\/25914\/","url_meta":{"origin":39236,"position":2},"title":"\ub9ac\uc561\ud2b8 \uac15\uc88c: \ub9ac\uc561\ud2b8 \uac1c\ubc1c\uc790 \ub3c4\uad6c","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 | \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \ub9ac\uc561\ud2b8\ub780? \ub9ac\uc561\ud2b8(React)\ub294 \ud398\uc774\uc2a4\ubd81\uc5d0\uc11c \uac1c\ubc1c\ud55c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI)\ub97c \uc704\ud55c JavaScript \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \ub9ac\uc561\ud2b8\ub294 \ud6a8\uc728\uc801\uc774\uace0 \uc720\uc5f0\ud55c \ubc29\uc2dd\uc73c\ub85c UI\ub97c \uad6c\uc131\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\uc2b5\ub2c8\ub2e4. \uadf8 \uc8fc\ub41c \ud2b9\uc9d5\uc740 \ucef4\ud3ec\ub10c\ud2b8 \uae30\ubc18 \uad6c\uc870\uc774\uba70, \uc0c1\ud0dc \uad00\ub9ac, \uac00\uc0c1 DOM, \uc0dd\uba85\uc8fc\uae30 \uad00\ub9ac \ub4f1 \ub2e4\uc591\ud55c \uac1c\ub150\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. 1.1 \ub9ac\uc561\ud2b8\uc758 \uc7a5\uc810 \uc7ac\uc0ac\uc6a9\uc131: \ucef4\ud3ec\ub10c\ud2b8\ub97c \uc7ac\uc0ac\uc6a9\ud560 \uc218 \uc788\uc5b4\u2026","rel":"","context":"&quot;\ub9ac\uc561\ud2b8 \uae30\ucd08 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ub9ac\uc561\ud2b8 \uae30\ucd08 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%eb%a6%ac%ec%95%a1%ed%8a%b8-%ea%b8%b0%ec%b4%88-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":40894,"url":"https:\/\/atmokpo.com\/w\/40894\/","url_meta":{"origin":39236,"position":3},"title":"39.Figma\uc5d0\uc11c \uc560\ub2c8\uba54\uc774\uc158\uacfc \ub9c8\uc774\ud06c\ub85c \uc778\ud130\ub799\uc158 \ub9cc\ub4e4\uae30, \ud504\ub85c\ud1a0\ud0c0\uc785\uc5d0 \uc560\ub2c8\uba54\uc774\uc158\uc744 \ucd94\uac00\ud558\ub294 \ubc29\ubc95","author":"root","date":"2024\ub144 11\uc6d4 04\uc77c","format":false,"excerpt":"\uc774 \uae00\uc5d0\uc11c\ub294 Figma\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc560\ub2c8\uba54\uc774\uc158\uacfc \ub9c8\uc774\ud06c\ub85c \uc778\ud130\ub799\uc158\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud569\ub2c8\ub2e4. \uc560\ub2c8\uba54\uc774\uc158\uc740 \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \ud48d\ubd80\ud558\uac8c \ud558\uace0, \ub9c8\uc774\ud06c\ub85c \uc778\ud130\ub799\uc158\uc740 \uc778\ud130\ud398\uc774\uc2a4\uc758 \ud53c\ub4dc\ubc31\uc744 \uc81c\uacf5\ud558\uc5ec \uc0ac\uc6a9\uc790\uac00 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uacfc \uc27d\uac8c \uc0c1\ud638\uc791\uc6a9\ud560 \uc218 \uc788\ub3c4\ub85d \ud569\ub2c8\ub2e4. \uc774\uc81c Figma\ub97c \ud65c\uc6a9\ud574 \uc774\ub7ec\ud55c \uc694\uc18c\ub97c \uc5b4\ub5bb\uac8c \uc801\uc6a9\ud560 \uc218 \uc788\ub294\uc9c0 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Figma\ub780 \ubb34\uc5c7\uc778\uac00? Figma\ub294 UI\/UX \ub514\uc790\uc778 \ub3c4\uad6c\ub85c, \ub514\uc790\uc774\ub108\ub4e4\uc774 \ud611\uc5c5\ud560 \uc218 \uc788\ub294 \ud658\uacbd\uc744\u2026","rel":"","context":"&quot;Figma&quot;\uc5d0\uc11c","block_context":{"text":"Figma","link":"https:\/\/atmokpo.com\/w\/category\/figma\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25854,"url":"https:\/\/atmokpo.com\/w\/25854\/","url_meta":{"origin":39236,"position":4},"title":"\uc2a4\uc704\ud504\ud2b8\ub85c SwiftUI \ubc29\uc2dd, \uc544\uc774\ud3f0 \uc571 \uac1c\ubc1c, \ucf5c\ub77c\uc8fc \uc0ac\uc9c4 \ub9cc\ub4e4\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"Author: \uc870\uad11\ud615 Date: [\ub0a0\uc9dc] 1. \uc11c\ub860 \uc624\ub298\ub0a0 \uc6b0\ub9ac\ub294 \uc2a4\ub9c8\ud2b8\ud3f0\uc744 \ud1b5\ud574 \uc0ac\uc9c4\uc744 \uc27d\uac8c \ucc0d\uace0 \uc18c\ud1b5\ud560 \uc218 \uc788\ub294 \uc2dc\ub300\uc5d0 \uc0b4\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc6b0\ub9ac \uc0b6\uc758 \uc5ec\ub7ec \uc21c\uac04\uc744 \uae30\ub85d\ud558\uae30 \uc704\ud574, \uadf8\ub9ac\uace0 \uadf8 \uc21c\uac04\ub4e4\uc744 \uce5c\uad6c\ub4e4\uacfc \uacf5\uc720\ud558\uae30 \uc704\ud574 \ub9ce\uc740 \uc0ac\ub78c\ub4e4\uc774 \uc18c\uc15c \ubbf8\ub514\uc5b4\ub97c \uc0ac\uc6a9\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ud750\ub984 \uc18d\uc5d0\uc11c, \uc8fc\ubaa9\ud560 \ub9cc\ud55c \uc544\uc774\ub514\uc5b4 \uc911 \ud558\ub098\ub294 \ub2e4\uc591\ud55c \uc0ac\uc9c4\uc744 \uacb0\ud569\ud558\uc5ec \ucf5c\ub77c\uc8fc\ub97c \ub9cc\ub4dc\ub294\u2026","rel":"","context":"&quot;\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)&quot;\uc5d0\uc11c","block_context":{"text":"\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)","link":"https:\/\/atmokpo.com\/w\/category\/%ec%8a%a4%ec%9c%84%ed%94%84%ed%8a%b8-%ec%95%84%ec%9d%b4%ed%8f%b0%ec%95%b1-%ea%b0%9c%eb%b0%9c-swiftui\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25112,"url":"https:\/\/atmokpo.com\/w\/25112\/","url_meta":{"origin":39236,"position":5},"title":"\uc720\ub2c8\ud2f0 \uae30\ucd08 \uac15\uc88c: C# \ucef4\ud4e8\ud130\uc640 \uccab\uc778\uc0ac","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\ucd5c\uc2e0 \uac8c\uc784 \uac1c\ubc1c \ud658\uacbd\uc5d0\uc11c \uc720\ub2c8\ud2f0\ub294 \uac00\uc7a5 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uac8c\uc784 \uc5d4\uc9c4 \uc911 \ud558\ub098\ub85c, \uac15\ub825\ud55c \uae30\ub2a5\uacfc \uc720\uc5f0\uc131 \ub355\ubd84\uc5d0 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud638\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 \uc720\ub2c8\ud2f0\uc758 \uae30\ucd08\ubd80\ud130 \uc2dc\uc791\ud558\uc5ec C#\uc744 \uc0ac\uc6a9\ud574 \ucef4\ud4e8\ud130\uc640 \uccab \uc778\uc0ac\ub97c \ub098\ub204\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc0c1\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc720\ub2c8\ud2f0\ub780 \ubb34\uc5c7\uc778\uac00? \uc720\ub2c8\ud2f0(Unreal Engine)\ub294 \uadf8\ub798\ud53d\uc2a4, \ubb3c\ub9ac\ud559, \uc778\uacf5\uc9c0\ub2a5 \ub4f1\uc758 \uae30\ub2a5\uc744 \uac16\ucd98 3D \ubc0f 2D \uac8c\uc784\u2026","rel":"","context":"&quot;\uc720\ub2c8\ud2f0\uae30\ucd08&quot;\uc5d0\uc11c","block_context":{"text":"\uc720\ub2c8\ud2f0\uae30\ucd08","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9c%a0%eb%8b%88%ed%8b%b0%ea%b8%b0%ec%b4%88\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39236","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=39236"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39236\/revisions"}],"predecessor-version":[{"id":39237,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39236\/revisions\/39237"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=39236"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=39236"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=39236"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}