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
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
Codexに役割を持たせる 他のAIエージェントと組み合わせる実務Tips
o8n
4
1.3k
AI時代でも変わらない技術コミュニティの力~10年続く“ゆるい”つながりが生み出す価値
n_takehata
2
720
RAGでハマりがちな"Excelの罠"を、データの構造化で突破する
harumiweb
9
2.8k
Goの型安全性で実現する複数プロダクトの権限管理
ishikawa_pro
2
290
Docコメントで始める簡単ガードレール
keisukeikeda
1
110
API Platformを活用したPHPによる本格的なWeb API開発 / api-platform-book-intro
ttskch
1
130
How to stabilize UI tests using XCTest
akkeylab
0
120
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
130
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
140
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
840
AHC061解説
shun_pi
0
360
SourceGeneratorのマーカー属性問題について
htkym
0
190
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.2k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
780
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
RailsConf 2023
tenderlove
30
1.4k
Tips & Tricks on How to Get Your First Job In Tech
honzajavorek
0
450
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
91
Building a Modern Day E-commerce SEO Strategy
aleyda
45
8.8k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
Leadership Guide Workshop - DevTernity 2021
reverentgeek
1
240
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
170
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
64
53k
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ライブラリです。