{"id":1301,"date":"2023-05-16T23:34:50","date_gmt":"2023-05-16T23:34:50","guid":{"rendered":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301"},"modified":"2023-05-16T23:34:50","modified_gmt":"2023-05-16T23:34:50","slug":"core-plot","status":"publish","type":"post","link":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301","title":{"rendered":"Core Plot"},"content":{"rendered":"<p>\u3053\u308c\u3082\u4eca\u3059\u3050\u3069\u3046\u3053\u3046\u3068\u3044\u3046\u8a71\u3067\u306f\u306a\u3044\u306e\u3060\u304c\u3001Core Plot \u3068\u3044\u3046 iOS\/MacOS \u306e\u30b0\u30e9\u30d5\u30fb\u30c1\u30e3\u30fc\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u30e1\u30e2\u3002<\/p>\n<p>\u516c\u5f0f\u30ea\u30dd\u30b8\u30c8\u30ea\u306f<a href=\"https:\/\/github.com\/core-plot\/core-plot\">\u3053\u3061\u3089<\/a>\u3002<\/p>\n<p>arm Mac \u3067\u4f7f\u3044\u305f\u3051\u308c\u3070\u3001release-2.4 \u306e\u30d6\u30e9\u30f3\u30c1\u3092\u4f7f\u3046\u3002<\/p>\n<pre><code>git clone -b release-2.4  git@github.com:core-plot\/core-plot core-plot24<\/code><\/pre>\n<p>\u3067\u843d\u3068\u3057\u3066\u3001framework \u30d5\u30a9\u30eb\u30c0\u5185\u306e .xocdeproj \u3092 Xcode \u3067\u8d77\u52d5\u3002<\/p>\n<p>\u30b7\u30a7\u30eb\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u4e0d\u5177\u5408\u304c\u3042\u308b\u3088\u3046\u3060\u304c\u3001\u6240\u5b9a\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3067\u304d\u3066\u3044\u308b\u3088\u3046\u306a\u306e\u3067\u3001\u3053\u306e\u72b6\u614b\u3067\u672c\u4f53\u81ea\u4f53\u3092\u30d3\u30eb\u30c9\u3002<\/p>\n<p>CorePlot.framework \u304c\u751f\u6210\u3055\u308c\u308b\u306e\u3067\u3001\u3053\u308c\u3092\u4f7f\u3044\u305f\u3044\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u53d6\u308a\u8fbc\u3093\u3067\u4f7f\u7528\u3059\u308b\u3002<\/p>\n<p>\u3053\u306e<a href=\"https:\/\/dev.classmethod.jp\/articles\/core-plot\/\">\u8a18\u4e8b<\/a>\u306e\u30b5\u30f3\u30d7\u30eb\u3092 MacOS \u3067\u30d3\u30eb\u30c9\u3002<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-1302\" src=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png\" alt=\"\" width=\"900\" height=\"623\" srcset=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png 900w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac-300x208.png 300w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac-768x532.png 768w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/p>\n<p>\u3067\u304d\u3066\u307e\u3059\u306d\u3002<br \/>\n\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306f\u82e5\u5e72\u4fee\u6b63\u3057\u3066\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u306a\u308b\u3002<\/p>\n<pre><code>#import &lt;Cocoa\/Cocoa.h&gt;\r\n#import &lt;CorePlot\/CorePlot.h&gt;\r\n\r\n@interface ViewController : NSViewController&lt;CPTPieChartDataSource,CPTPieChartDelegate&gt;\r\n\r\n@property (readwrite, nonatomic) NSMutableArray *pieChartData;\r\n\r\n@end<\/code><\/pre>\n<p>\u3068<\/p>\n<pre><code>#import \"ViewController.h\"\r\n\r\n@implementation ViewController\r\n\r\n@synthesize pieChartData;\r\n\r\n- (void)viewDidLoad\r\n{\r\n    [super viewDidLoad];\r\n    \r\n    \/\/\u3000\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d3\u30e5\u30fc\u3092\u751f\u6210\u3057\u307e\u3059\u3002\r\n    CPTGraphHostingView *hostingView = [[CPTGraphHostingView alloc]\r\n                                        initWithFrame:CGRectMake(0, 0, 320, 320)];\r\n    \r\n    \/\/ \u30b0\u30e9\u30d5\u3092\u751f\u6210\u3057\u307e\u3059\u3002\r\n    CPTXYGraph *graph = [[CPTXYGraph alloc] initWithFrame:hostingView.bounds];\r\n    hostingView.hostedGraph = graph;\r\n    \r\n    \/\/ \u4eca\u56de\u306f\u5186\u30b0\u30e9\u30d5\u306a\u306e\u3067\u3001\u30b0\u30e9\u30d5\u306e\u8ef8\u306f\u4f7f\u7528\u3057\u307e\u305b\u3093\u3002\r\n    graph.axisSet = nil;\r\n    \r\n    \/\/ \u5186\u30b0\u30e9\u30d5\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059\u3002\r\n    CPTPieChart *pieChart = [[CPTPieChart alloc] init];\r\n    \r\n    \/\/ \u5186\u30b0\u30e9\u30d5\u306e\u534a\u5f84\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002\r\n    pieChart.pieRadius = 80.0;\r\n    \r\n    \/\/ \u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002\r\n    pieChart.dataSource = self;\r\n    \r\n    \/\/ \u30c7\u30ea\u30b2\u30fc\u30c8\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002\r\n    pieChart.delegate = self;\r\n    \r\n    \/\/ \u30b0\u30e9\u30d5\u306b\u5186\u30b0\u30e9\u30d5\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002\r\n    [graph addPlot:pieChart];\r\n    \r\n    \/\/ \u30b0\u30e9\u30d5\u306b\u8868\u793a\u3059\u308b\u30c7\u30fc\u30bf\u3092\u751f\u6210\u3057\u307e\u3059\u3002\r\n    self.pieChartData = [NSMutableArray arrayWithObjects:\r\n                         [NSNumber numberWithDouble:40.0],\r\n                         [NSNumber numberWithDouble:30.0],\r\n                         [NSNumber numberWithDouble:20.0],\r\n                         [NSNumber numberWithDouble:10.0],\r\n                         nil];\r\n    \r\n    \/\/ \u753b\u9762\u306b\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u30d3\u30e5\u30fc\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002\r\n    [self.view addSubview:hostingView];\r\n}\r\n\r\n\r\n\r\n\r\n\/\/ \u30b0\u30e9\u30d5\u306b\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u306e\u6570\u3092\u8fd4\u3059\u3088\u3046\u306b\u5b9f\u88c5\u3057\u307e\u3059\u3002\r\n-(NSUInteger)numberOfRecordsForPlot:(CPTPlot *)plot\r\n{\r\n    return [self.pieChartData count];\r\n}\r\n\r\n\/\/ \u30b0\u30e9\u30d5\u306b\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u306e\u5024\u3092\u8fd4\u3059\u3088\u3046\u306b\u5b9f\u88c5\u3057\u307e\u3059\u3002\r\n-(NSNumber *)numberForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index\r\n{\r\n    return [self.pieChartData objectAtIndex:index];\r\n}\r\n@end<\/code><\/pre>\n<p>\u3067\u3059\u3002<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3053\u308c\u3082\u4eca\u3059\u3050\u3069\u3046\u3053\u3046\u3068\u3044\u3046\u8a71\u3067\u306f\u306a\u3044\u306e\u3060\u304c\u3001Core Plot \u3068\u3044\u3046 iOS\/MacOS \u306e\u30b0\u30e9\u30d5\u30fb\u30c1\u30e3\u30fc\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u30e1\u30e2\u3002 \u516c\u5f0f\u30ea\u30dd\u30b8\u30c8\u30ea\u306f\u3053\u3061\u3089\u3002 arm Mac \u3067\u4f7f\u3044\u305f\u3051\u308c\u3070\u3001release-2. &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;Core Plot&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":3,"featured_media":1302,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":""},"categories":[12,64,77],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Core Plot | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011<\/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:\/\/p-horlix.net\/umamusume-phazor\/?p=1301\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Core Plot | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\" \/>\n<meta property=\"og:description\" content=\"\u3053\u308c\u3082\u4eca\u3059\u3050\u3069\u3046\u3053\u3046\u3068\u3044\u3046\u8a71\u3067\u306f\u306a\u3044\u306e\u3060\u304c\u3001Core Plot \u3068\u3044\u3046 iOS\/MacOS \u306e\u30b0\u30e9\u30d5\u30fb\u30c1\u30e3\u30fc\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u30e1\u30e2\u3002 \u516c\u5f0f\u30ea\u30dd\u30b8\u30c8\u30ea\u306f\u3053\u3061\u3089\u3002 arm Mac \u3067\u4f7f\u3044\u305f\u3051\u308c\u3070\u3001release-2. &hellip; &quot;Core Plot&quot; \u306e\u7d9a\u304d\u3092\u8aad\u3080\" \/>\n<meta property=\"og:url\" content=\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301\" \/>\n<meta property=\"og:site_name\" content=\"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Akiba.Chan.2021\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-16T23:34:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"623\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@AkibaChan3\" \/>\n<meta name=\"twitter:site\" content=\"@AkibaChan3\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u79cb\u8449\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#website\",\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/\",\"name\":\"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\",\"description\":\"\u30a6\u30de\u5a18\u95a2\u9023\u306e\u30cd\u30bf\u304c\u591a\u3044\u3067\u3057\u3087\u3046\u304b\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ja\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#primaryimage\",\"inLanguage\":\"ja\",\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png\",\"contentUrl\":\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png\",\"width\":900,\"height\":623},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#webpage\",\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301\",\"name\":\"Core Plot | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\",\"isPartOf\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#primaryimage\"},\"datePublished\":\"2023-05-16T23:34:50+00:00\",\"dateModified\":\"2023-05-16T23:34:50+00:00\",\"author\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308\"},\"breadcrumb\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"HOME\",\"item\":\"https:\/\/p-horlix.net\/umamusume-phazor\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Core Plot\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308\",\"name\":\"\u79cb\u8449\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#personlogo\",\"inLanguage\":\"ja\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g\",\"caption\":\"\u79cb\u8449\"},\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?author=3\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Core Plot | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","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:\/\/p-horlix.net\/umamusume-phazor\/?p=1301","og_locale":"ja_JP","og_type":"article","og_title":"Core Plot | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","og_description":"\u3053\u308c\u3082\u4eca\u3059\u3050\u3069\u3046\u3053\u3046\u3068\u3044\u3046\u8a71\u3067\u306f\u306a\u3044\u306e\u3060\u304c\u3001Core Plot \u3068\u3044\u3046 iOS\/MacOS \u306e\u30b0\u30e9\u30d5\u30fb\u30c1\u30e3\u30fc\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u30e1\u30e2\u3002 \u516c\u5f0f\u30ea\u30dd\u30b8\u30c8\u30ea\u306f\u3053\u3061\u3089\u3002 arm Mac \u3067\u4f7f\u3044\u305f\u3051\u308c\u3070\u3001release-2. &hellip; \"Core Plot\" \u306e\u7d9a\u304d\u3092\u8aad\u3080","og_url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301","og_site_name":"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","article_publisher":"https:\/\/www.facebook.com\/Akiba.Chan.2021\/","article_published_time":"2023-05-16T23:34:50+00:00","og_image":[{"width":900,"height":623,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_creator":"@AkibaChan3","twitter_site":"@AkibaChan3","twitter_misc":{"\u57f7\u7b46\u8005":"\u79cb\u8449","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#website","url":"https:\/\/p-horlix.net\/umamusume-phazor\/","name":"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","description":"\u30a6\u30de\u5a18\u95a2\u9023\u306e\u30cd\u30bf\u304c\u591a\u3044\u3067\u3057\u3087\u3046\u304b","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/p-horlix.net\/umamusume-phazor\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ja"},{"@type":"ImageObject","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#primaryimage","inLanguage":"ja","url":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png","contentUrl":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png","width":900,"height":623},{"@type":"WebPage","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#webpage","url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301","name":"Core Plot | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","isPartOf":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#website"},"primaryImageOfPage":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#primaryimage"},"datePublished":"2023-05-16T23:34:50+00:00","dateModified":"2023-05-16T23:34:50+00:00","author":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308"},"breadcrumb":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1301#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"HOME","item":"https:\/\/p-horlix.net\/umamusume-phazor"},{"@type":"ListItem","position":2,"name":"Core Plot"}]},{"@type":"Person","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308","name":"\u79cb\u8449","image":{"@type":"ImageObject","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#personlogo","inLanguage":"ja","url":"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g","caption":"\u79cb\u8449"},"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?author=3"}]}},"jetpack_featured_media_url":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/coreplot-arm-mac.png","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":1291,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1291","url_meta":{"origin":1301,"position":0},"title":"NSSplitView","date":"2023-05-13","format":false,"excerpt":"\u4eca\u3059\u3050\u3069\u3046\u3053\u3046\u3068\u3044\u3046\u308f\u3051\u3067\u306f\u306a\u3044\u304c\u3001NSSplitView \u3092\u4f7f\u3048\u308b\u3068\u30a2\u30d7\u30ea\u306e\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u8868\u73fe\u304c\u8c4a\u304b\u2026","rel":"","context":"MacOS","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/05\/NSSplitView.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":1004,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1004","url_meta":{"origin":1301,"position":1},"title":"cocoa Core Graphics \u95a2\u4fc2","date":"2023-03-17","format":false,"excerpt":"MacOS \u306e\u65b0\u3057\u3044\u753b\u50cf\u30e9\u30a4\u30d6\u30e9\u30ea\u306f Metal \u3060\u304c\u3001\uff12\u6b21\u5143\u306b\u9650\u5b9a\u3055\u308c\u3066\u3057\u307e\u3046\u304c\u3001\u4f7f\u3044\u3084\u3059\u3044\u306e\u306f \u2026","rel":"","context":"MacOS","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/03\/objective-c-macos-coregraphics.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":853,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=853","url_meta":{"origin":1301,"position":2},"title":"cmake \u3067 framework \u3092\u751f\u6210\u3059\u308b","date":"2023-02-13","format":false,"excerpt":"\u3053\u306e\u524d\u306e\u8a18\u4e8b\u3067\u3001cmake \u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067 cocoa \u306e framework \u3092\u4f5c\u6210\u3059\u308b\u30aa\u30d7\u30b7\u30e7\u2026","rel":"","context":"CMake","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/02\/cmake-framework-option-e1676276450487.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":941,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=941","url_meta":{"origin":1301,"position":3},"title":"Xcode \u3067 GUI \u30a2\u30d7\u30ea","date":"2023-03-08","format":false,"excerpt":"\u3053\u308c\u307e\u3067\u3001\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30c4\u30fc\u30eb\u3092\u4f5c\u6210\u3057\u3066\u304d\u305f\u3002 \u3042\u308b\u7a0b\u5ea6\u3001Objective-C \u306e\u69d8\u5b50\u3082\u308f\u304b\u3063\u2026","rel":"","context":"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/03\/cocoa-objective-c-gui-xcode.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":962,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=962","url_meta":{"origin":1301,"position":4},"title":"Xcode \u3067 GUI \u30a2\u30d7\u30ea \uff12","date":"2023-03-09","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u3067\u307e\u305a\u306f\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u3067\u304d\u305f\u3002 \u3057\u304b\u3057\u3001ViewerController \u306b\u95a2\u3057\u3066\u306f\u3001Xco\u2026","rel":"","context":"MacOS","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/03\/cocoa-xcode-obj-c-custom-window-controller900.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":870,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=870","url_meta":{"origin":1301,"position":5},"title":"OpenJPEG \u3092\u4f7f\u3063\u3066\u307f\u308b","date":"2023-02-11","format":false,"excerpt":"\u4ed6\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u7d44\u307f\u8fbc\u307e\u308c\u3066\u4f7f\u308f\u308c\u308b\u3053\u3068\u306e\u591a\u3044 OpenJPEG \u3068\u3044\u3046\u30e9\u30a4\u30d6\u30e9\u30ea\u3060\u304c\u3001opj_co\u2026","rel":"","context":"\u753b\u50cf\u51e6\u7406","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/02\/OpenJPEG-j2k-jp2.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts\/1301"}],"collection":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1301"}],"version-history":[{"count":1,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts\/1301\/revisions"}],"predecessor-version":[{"id":1303,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts\/1301\/revisions\/1303"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/media\/1302"}],"wp:attachment":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}