SlideShare une entreprise Scribd logo
1  sur  8
Télécharger pour lire hors ligne
最近ViewControllerを
どんな風に書いているか
@u16suzu
http://u16suzu.hatenablog.com/
自己紹介
• @u16suzu
• iOSを仕事で初めて1年と2ヶ月くらい
• Railsもやります. プログラミング大好き!
今日の内容
• xib, story boardを使わないでコードだけで iOSを
書くときに,どういう風にViewControllerをかいて
いるか
• 主にビューの描画部分について
- (void)viewDidLoad{
[super viewDidLoad];
!
UIButton*btn = [UIButton buttonWithType:UIButtonTypeSystem];
btn.frame = CGRectMake(100, 100, 100, 50);
[btn setTitle:@"Button" forState:UIControlStateNormal];
[btn sizeToFit];
[self.view addSubview:btn];
UILabel*l = [[UILabel alloc]initWithFrame:CGRectMake(100, 150, 100, 50)];
l.text = @"label";
[self.view addSubview:l];
}
昔
viewDidLoad にコントロールの初期化と位置指定
のコードが全て書いてある
今
コントロールの初期化と位置指定を分けている
@interface ViewController ()
@property (nonatomic) UIView*titleView;
@property (nonatomic) CustomView*customView;
@end
!
@implementation ViewController
- (void)loadView{
[super loadView];
[self.view addSubview:self.titleView];
[self.view addSubview:self.customView];
}
!
- (void)viewDidLayoutSubviews{
[super viewDidLayoutSubviews];
CGRect titleViewFrame = CGRectMake(50, 50, 50, 50);
self.titleView.frame = titleViewFrame;
CGRect customViewFrame = CGRectMake(50, 100, 300, 100);
self.customView.frame = customViewFrame;
}
!
#pragma mark - Views
!
- (UIView*)titleView{
if(!_titleView){
_titleView = [UIView new];
_titleView.backgroundColor = [UIColor redColor];
}
return _titleView;
}
!
- (CustomView*)customView{
if(!_customView){
_customView = [CustomView new];
}
return _customView;
}
!
@end
プロパティで宣言
アクセッサで初期化
viewDidLayoutSubviews
で位置指定
loadViewでaddSubview
改善ポイント
• コントロールの位置の変更が容易
• ソースコードが読みやすくなった
• カスタムビューに分割しやすい
- (id)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
[self addSubview:self.firstButton];
}
return self;
}
!
#pragma - Views
!
- (void)layoutSubviews{
[super layoutSubviews];
[self.firstButton sizeToFit];
CGRect frame = CGRectMake(0, 0, 60, 30);
self.firstButton.frame = frame;
}
!
- (UIButton*)firstButton{
if(!_firstButton){
_firstButton = [UIButton buttonWithType:UIButtonTypeSystem];
[_firstButton setTitle:@"firstButton" forState:UIControlStateNormal];
}
return _firstButton;
}
今のカスタムビュー
layoutSubviewsで位置指定
initWithFrameで addSubview
あとは VCと同じ
以上です!

Contenu connexe

Tendances

Enhancements with 3D Touch
Enhancements with 3D TouchEnhancements with 3D Touch
Enhancements with 3D TouchSatoshi Ohki
 
jQueryで気をつけてほしいこと
jQueryで気をつけてほしいことjQueryで気をつけてほしいこと
jQueryで気をつけてほしいこと良太 増子
 
Jsのビルド環境
Jsのビルド環境Jsのビルド環境
Jsのビルド環境fourside
 
Apple watch対応アプリのポイントや基本実装・連携tips
Apple watch対応アプリのポイントや基本実装・連携tipsApple watch対応アプリのポイントや基本実装・連携tips
Apple watch対応アプリのポイントや基本実装・連携tipsFumiya Sakai
 
JavaScriptと共に歩いて行く決意をした君へ
JavaScriptと共に歩いて行く決意をした君へJavaScriptと共に歩いて行く決意をした君へ
JavaScriptと共に歩いて行く決意をした君へMuyuu Fujita
 
SQLアンチパターン読書会 15章 ランダムセレクション 説明資料
SQLアンチパターン読書会 15章 ランダムセレクション 説明資料SQLアンチパターン読書会 15章 ランダムセレクション 説明資料
SQLアンチパターン読書会 15章 ランダムセレクション 説明資料Nao Yamamoto
 
Excel 方眼紙撲滅委員会 活動報告 2012.11 #odstudy
Excel 方眼紙撲滅委員会 活動報告 2012.11 #odstudyExcel 方眼紙撲滅委員会 活動報告 2012.11 #odstudy
Excel 方眼紙撲滅委員会 活動報告 2012.11 #odstudyTakeshi Komiya
 

Tendances (12)

Enhancements with 3D Touch
Enhancements with 3D TouchEnhancements with 3D Touch
Enhancements with 3D Touch
 
絶望しない! コミケ
絶望しない! コミケ絶望しない! コミケ
絶望しない! コミケ
 
jQueryで気をつけてほしいこと
jQueryで気をつけてほしいことjQueryで気をつけてほしいこと
jQueryで気をつけてほしいこと
 
Jsのビルド環境
Jsのビルド環境Jsのビルド環境
Jsのビルド環境
 
Study Intro Backbone
Study Intro BackboneStudy Intro Backbone
Study Intro Backbone
 
Apple watch対応アプリのポイントや基本実装・連携tips
Apple watch対応アプリのポイントや基本実装・連携tipsApple watch対応アプリのポイントや基本実装・連携tips
Apple watch対応アプリのポイントや基本実装・連携tips
 
Effective flutter
Effective flutterEffective flutter
Effective flutter
 
Alt01-LT
Alt01-LTAlt01-LT
Alt01-LT
 
YUI
YUIYUI
YUI
 
JavaScriptと共に歩いて行く決意をした君へ
JavaScriptと共に歩いて行く決意をした君へJavaScriptと共に歩いて行く決意をした君へ
JavaScriptと共に歩いて行く決意をした君へ
 
SQLアンチパターン読書会 15章 ランダムセレクション 説明資料
SQLアンチパターン読書会 15章 ランダムセレクション 説明資料SQLアンチパターン読書会 15章 ランダムセレクション 説明資料
SQLアンチパターン読書会 15章 ランダムセレクション 説明資料
 
Excel 方眼紙撲滅委員会 活動報告 2012.11 #odstudy
Excel 方眼紙撲滅委員会 活動報告 2012.11 #odstudyExcel 方眼紙撲滅委員会 活動報告 2012.11 #odstudy
Excel 方眼紙撲滅委員会 活動報告 2012.11 #odstudy
 

En vedette

Alvaro Fides - Use of hierarchical model-view-controller architecture for use...
Alvaro Fides - Use of hierarchical model-view-controller architecture for use...Alvaro Fides - Use of hierarchical model-view-controller architecture for use...
Alvaro Fides - Use of hierarchical model-view-controller architecture for use...WTHS
 
Wellington Residences - Lisa
Wellington Residences - LisaWellington Residences - Lisa
Wellington Residences - Lisanikatherez
 
Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...
Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...
Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...WTHS
 
Registry of Course Trainers For 2013
Registry of Course Trainers For 2013Registry of Course Trainers For 2013
Registry of Course Trainers For 2013sohainstitute
 
Paper Florencio Cano - Patient data security in a wireless and mobile world
Paper Florencio Cano - Patient data security in a wireless and mobile worldPaper Florencio Cano - Patient data security in a wireless and mobile world
Paper Florencio Cano - Patient data security in a wireless and mobile worldWTHS
 
The Maori :background
The Maori :backgroundThe Maori :background
The Maori :backgroundMRINCON002
 
Beni Gómez - APTIC a knowledge repository for parents and caregivers of chil...
Beni Gómez  - APTIC a knowledge repository for parents and caregivers of chil...Beni Gómez  - APTIC a knowledge repository for parents and caregivers of chil...
Beni Gómez - APTIC a knowledge repository for parents and caregivers of chil...WTHS
 
عامر عرموش
عامر عرموشعامر عرموش
عامر عرموشAmer Armoush
 
Basic html
Basic htmlBasic html
Basic htmldand_01
 
Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...
Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...
Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...WTHS
 
Presentation finale3 sfr2011
Presentation finale3 sfr2011Presentation finale3 sfr2011
Presentation finale3 sfr2011larhumato
 
Audience research
Audience researchAudience research
Audience researchsherieallen
 
Mercedes Serrano - Guía metabólica: empowerment through health 2.0 tools in ...
Mercedes Serrano -  Guía metabólica: empowerment through health 2.0 tools in ...Mercedes Serrano -  Guía metabólica: empowerment through health 2.0 tools in ...
Mercedes Serrano - Guía metabólica: empowerment through health 2.0 tools in ...WTHS
 
Question 2 - Evaluation
Question 2 - EvaluationQuestion 2 - Evaluation
Question 2 - EvaluationFayBurmingham
 
Manuel Armañones - Mesa redonda: Health 2.0
Manuel Armañones -  Mesa redonda:  Health 2.0Manuel Armañones -  Mesa redonda:  Health 2.0
Manuel Armañones - Mesa redonda: Health 2.0WTHS
 
New Year’s Eve in New York City
New Year’s Eve in New York CityNew Year’s Eve in New York City
New Year’s Eve in New York Cityrogerfranquesa
 
Buildings by jihad awad
Buildings by jihad awadBuildings by jihad awad
Buildings by jihad awadJihad Awad
 
Professional Innovator Development
Professional Innovator DevelopmentProfessional Innovator Development
Professional Innovator Developmentdanaclarke
 

En vedette (20)

Alvaro Fides - Use of hierarchical model-view-controller architecture for use...
Alvaro Fides - Use of hierarchical model-view-controller architecture for use...Alvaro Fides - Use of hierarchical model-view-controller architecture for use...
Alvaro Fides - Use of hierarchical model-view-controller architecture for use...
 
Wellington Residences - Lisa
Wellington Residences - LisaWellington Residences - Lisa
Wellington Residences - Lisa
 
Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...
Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...
Paper María Iglesia - CEIB: A R&D services in bioimaging oriented to integrat...
 
Registry of Course Trainers For 2013
Registry of Course Trainers For 2013Registry of Course Trainers For 2013
Registry of Course Trainers For 2013
 
Paper Florencio Cano - Patient data security in a wireless and mobile world
Paper Florencio Cano - Patient data security in a wireless and mobile worldPaper Florencio Cano - Patient data security in a wireless and mobile world
Paper Florencio Cano - Patient data security in a wireless and mobile world
 
The Maori :background
The Maori :backgroundThe Maori :background
The Maori :background
 
Beni Gómez - APTIC a knowledge repository for parents and caregivers of chil...
Beni Gómez  - APTIC a knowledge repository for parents and caregivers of chil...Beni Gómez  - APTIC a knowledge repository for parents and caregivers of chil...
Beni Gómez - APTIC a knowledge repository for parents and caregivers of chil...
 
عامر عرموش
عامر عرموشعامر عرموش
عامر عرموش
 
Basic html
Basic htmlBasic html
Basic html
 
Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...
Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...
Alejandro Gonzalez - An iPhone-based application for promoting type 2 diabeti...
 
Presentation finale3 sfr2011
Presentation finale3 sfr2011Presentation finale3 sfr2011
Presentation finale3 sfr2011
 
Audience research
Audience researchAudience research
Audience research
 
Mercedes Serrano - Guía metabólica: empowerment through health 2.0 tools in ...
Mercedes Serrano -  Guía metabólica: empowerment through health 2.0 tools in ...Mercedes Serrano -  Guía metabólica: empowerment through health 2.0 tools in ...
Mercedes Serrano - Guía metabólica: empowerment through health 2.0 tools in ...
 
Chapter13
Chapter13Chapter13
Chapter13
 
Cintai pangan lokal
Cintai pangan lokalCintai pangan lokal
Cintai pangan lokal
 
Question 2 - Evaluation
Question 2 - EvaluationQuestion 2 - Evaluation
Question 2 - Evaluation
 
Manuel Armañones - Mesa redonda: Health 2.0
Manuel Armañones -  Mesa redonda:  Health 2.0Manuel Armañones -  Mesa redonda:  Health 2.0
Manuel Armañones - Mesa redonda: Health 2.0
 
New Year’s Eve in New York City
New Year’s Eve in New York CityNew Year’s Eve in New York City
New Year’s Eve in New York City
 
Buildings by jihad awad
Buildings by jihad awadBuildings by jihad awad
Buildings by jihad awad
 
Professional Innovator Development
Professional Innovator DevelopmentProfessional Innovator Development
Professional Innovator Development
 

Similaire à よこへな3 15発表資料 最近ViewController をどんな感じで書いているか

20121201yidev hirobe iPad miniでRetina
20121201yidev hirobe iPad miniでRetina20121201yidev hirobe iPad miniでRetina
20121201yidev hirobe iPad miniでRetinaKazuya Hirobe
 
iOS 9 Bootcamp #6 UIKit
iOS 9 Bootcamp #6 UIKitiOS 9 Bootcamp #6 UIKit
iOS 9 Bootcamp #6 UIKitShingo Hiraya
 
BaseViewControllerは作りたくない
BaseViewControllerは作りたくないBaseViewControllerは作りたくない
BaseViewControllerは作りたくない今城 善矩
 
UI要素を動的に利用する
UI要素を動的に利用するUI要素を動的に利用する
UI要素を動的に利用するHideoMiyake
 
2012 05-19第44回cocoa勉強会発表資料
2012 05-19第44回cocoa勉強会発表資料2012 05-19第44回cocoa勉強会発表資料
2012 05-19第44回cocoa勉強会発表資料OCHI Shuji
 
RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介
RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介
RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介Fumiya Sakai
 
試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine
試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine
試して感覚を掴んでみるUICollectionViewCompositionalLayout & CombineFumiya Sakai
 
Css nite(2010.09.23)
Css nite(2010.09.23)Css nite(2010.09.23)
Css nite(2010.09.23)Yoshiki Ushida
 
Introduction for Browser Side MVC
Introduction for Browser Side MVCIntroduction for Browser Side MVC
Introduction for Browser Side MVCRyunosuke SATO
 
iOSのUI構築小技集(小さなとこから始められる編)
iOSのUI構築小技集(小さなとこから始められる編)iOSのUI構築小技集(小さなとこから始められる編)
iOSのUI構築小技集(小さなとこから始められる編)Fumiya Sakai
 
UIImagePickerController よもやま話
UIImagePickerController よもやま話UIImagePickerController よもやま話
UIImagePickerController よもやま話Kei Kusakari
 
Mapkitframework io9week
Mapkitframework io9weekMapkitframework io9week
Mapkitframework io9weekYuki Hirai
 
WKWebViewとUIWebView
WKWebViewとUIWebViewWKWebViewとUIWebView
WKWebViewとUIWebViewYuki Hirai
 
UIViewController のコンテナ機能
UIViewController のコンテナ機能UIViewController のコンテナ機能
UIViewController のコンテナ機能Yuichi Fujishige
 
デザイナーとエンジニアが話す、iOSアプリケーション開発
デザイナーとエンジニアが話す、iOSアプリケーション開発デザイナーとエンジニアが話す、iOSアプリケーション開発
デザイナーとエンジニアが話す、iOSアプリケーション開発Kenta Ohsugi
 
UIViewController in XIB + IBDesignable
UIViewController in XIB + IBDesignableUIViewController in XIB + IBDesignable
UIViewController in XIB + IBDesignableFukaya Akifumi
 

Similaire à よこへな3 15発表資料 最近ViewController をどんな感じで書いているか (20)

20121201yidev hirobe iPad miniでRetina
20121201yidev hirobe iPad miniでRetina20121201yidev hirobe iPad miniでRetina
20121201yidev hirobe iPad miniでRetina
 
iOS 9 Bootcamp #6 UIKit
iOS 9 Bootcamp #6 UIKitiOS 9 Bootcamp #6 UIKit
iOS 9 Bootcamp #6 UIKit
 
BaseViewControllerは作りたくない
BaseViewControllerは作りたくないBaseViewControllerは作りたくない
BaseViewControllerは作りたくない
 
UI要素を動的に利用する
UI要素を動的に利用するUI要素を動的に利用する
UI要素を動的に利用する
 
2012 05-19第44回cocoa勉強会発表資料
2012 05-19第44回cocoa勉強会発表資料2012 05-19第44回cocoa勉強会発表資料
2012 05-19第44回cocoa勉強会発表資料
 
RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介
RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介
RxDataSourceをNSDiffableDataSourceへ置き換える際のTips集紹介
 
試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine
試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine
試して感覚を掴んでみるUICollectionViewCompositionalLayout & Combine
 
Css nite(2010.09.23)
Css nite(2010.09.23)Css nite(2010.09.23)
Css nite(2010.09.23)
 
Introduction for Browser Side MVC
Introduction for Browser Side MVCIntroduction for Browser Side MVC
Introduction for Browser Side MVC
 
iOSのUI構築小技集(小さなとこから始められる編)
iOSのUI構築小技集(小さなとこから始められる編)iOSのUI構築小技集(小さなとこから始められる編)
iOSのUI構築小技集(小さなとこから始められる編)
 
Extra view @ kyobashi.swift
Extra view @ kyobashi.swiftExtra view @ kyobashi.swift
Extra view @ kyobashi.swift
 
Knockout
KnockoutKnockout
Knockout
 
UIImagePickerController よもやま話
UIImagePickerController よもやま話UIImagePickerController よもやま話
UIImagePickerController よもやま話
 
Mapkitframework io9week
Mapkitframework io9weekMapkitframework io9week
Mapkitframework io9week
 
WKWebViewとUIWebView
WKWebViewとUIWebViewWKWebViewとUIWebView
WKWebViewとUIWebView
 
iOS WebView App
iOS WebView AppiOS WebView App
iOS WebView App
 
UIViewController のコンテナ機能
UIViewController のコンテナ機能UIViewController のコンテナ機能
UIViewController のコンテナ機能
 
デザイナーとエンジニアが話す、iOSアプリケーション開発
デザイナーとエンジニアが話す、iOSアプリケーション開発デザイナーとエンジニアが話す、iOSアプリケーション開発
デザイナーとエンジニアが話す、iOSアプリケーション開発
 
魅せるUIの作り方 | iOS 7エンジニア勉強会
魅せるUIの作り方 | iOS 7エンジニア勉強会魅せるUIの作り方 | iOS 7エンジニア勉強会
魅せるUIの作り方 | iOS 7エンジニア勉強会
 
UIViewController in XIB + IBDesignable
UIViewController in XIB + IBDesignableUIViewController in XIB + IBDesignable
UIViewController in XIB + IBDesignable
 

Dernier

自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineerYuki Kikuchi
 
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdfクラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdfFumieNakayama
 
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NTT DATA Technology & Innovation
 
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)UEHARA, Tetsutaro
 
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)Hiroshi Tomioka
 
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdfAWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdfFumieNakayama
 
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?akihisamiyanaga1
 
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...博三 太田
 

Dernier (8)

自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
 
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdfクラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
 
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
 
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
 
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
 
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdfAWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
 
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
 
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...
 

よこへな3 15発表資料 最近ViewController をどんな感じで書いているか