Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
NabigationControllerとの付き合い方
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
keisukeYamagishi
April 25, 2022
Programming
0
310
NabigationControllerとの付き合い方
keisukeYamagishi
April 25, 2022
Tweet
Share
More Decks by keisukeYamagishi
See All by keisukeYamagishi
RxAlert 結構便利だと思います。
keisukeyamagishi
0
190
Chart実装が楽になりました。
keisukeyamagishi
0
1.1k
開発効率を考えてみました。xsort
keisukeyamagishi
0
320
MVVMについて.pdf
keisukeyamagishi
0
480
Other Decks in Programming
See All in Programming
株式会社 Sun terras カンパニーデック
sunterras
0
2.1k
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
220
Swift ConcurrencyでよりSwiftyに
yuukiw00w
0
250
CSC307 Lecture 13
javiergs
PRO
0
320
Fundamentals of Software Engineering In the Age of AI
therealdanvega
1
240
Claude Codeセッション現状確認 2026福岡 / fukuoka-aicoding-00-beacon
monochromegane
4
410
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
190
AIに任せる範囲を安全に広げるためにやっていること
fukucheee
0
130
AI時代のシステム設計:ドメインモデルで変更しやすさを守る設計戦略
masuda220
PRO
5
820
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
15
3k
SourceGeneratorのマーカー属性問題について
htkym
0
180
「抽象に依存せよ」が分からなかった新卒1年目の私が Goのインターフェースと和解するまで
kurogenki
0
100
Featured
See All Featured
Navigating Weather and Climate Data
rabernat
0
130
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
89
Digital Ethics as a Driver of Design Innovation
axbom
PRO
1
210
Documentation Writing (for coders)
carmenintech
77
5.3k
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.1k
How to Talk to Developers About Accessibility
jct
2
150
Skip the Path - Find Your Career Trail
mkilby
1
75
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
230
Agile that works and the tools we love
rasmusluckow
331
21k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
GraphQLとの向き合い方2022年版
quramy
50
14k
Crafting Experiences
bethany
1
81
Transcript
NavigationBarとの付き合い方 shichimitoucarashi keisuke yamagishi
自己紹介 Keisuke yamagishi Github: https://github.com/keisukeYamagishi App: https://apps.apple.com/us/app/chain/id6737129485?ct=Tap33766667
iOS15.0と iOS15.1, 15.2で 挙動が違う😎 UINavigationController
Appleの仕様変更により泣かせれる ぴえん🥺
具体的に申し上げると、 UINavigationController に付随されておる UINavigationBarを frameで操作できない🥺
None
None
解決策としては、 UINavigationControllerの UINavigationBarを使わず、 UINavigationBarを使うか、 UIView等を用いて、UINavigationBarを構築すると、 良いと考えます。
それにより、 ユーザーの急なバージョンアップなどで 思わぬ不具合を起こさなくなります
None
サンプルとして、 私が作成したClimbBarにて 実践してみます。
ClimbBar Github: https://github.com/shichimitoucarshi/ClimbBar
UITableViewや UIWebViewなど スクロール可能な要素を持つViewを 拡張することができるiOSライブラリです。