Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
NabigationControllerとの付き合い方
keisukeYamagishi
April 25, 2022
Programming
0
150
NabigationControllerとの付き合い方
keisukeYamagishi
April 25, 2022
Tweet
Share
More Decks by keisukeYamagishi
See All by keisukeYamagishi
RxAlert 結構便利だと思います。
keisukeyamagishi
0
35
Chart実装が楽になりました。
keisukeyamagishi
0
290
開発効率を考えてみました。xsort
keisukeyamagishi
0
140
MVVMについて.pdf
keisukeyamagishi
0
200
Other Decks in Programming
See All in Programming
OSC大阪 パスワード認証は人類には早すぎる ~ IDaaSを使ったソーシャルログインのすすめ ~
authyasan
3
290
T3 Stack and TypeScript ecosystem
quramy
3
700
Use KMM to call the API of the National Tax Agency
akkeylab
0
290
和暦を正しく扱うための暦の話
nagise
10
4.7k
スタック・オーバーフローに コントリビュートしはじめて良かったこと🐣
takuyakikuchi
1
120
ECS Service Connectでマイクロサービスを繋いでみた
xblood
0
520
Cloudflare Workersと状態管理
chimame
2
470
Step Functions Distributed Map を使ってみた
codemountains
0
100
jq at the Shortcuts
cockscomb
1
390
僕が考えた超最強のKMMアプリの作り方
spbaya0141
0
180
はてなリモートインターンシップ2022 インフラ 講義資料
hatena
4
2.1k
監視せなあかんし、五大紙だけにオオカミってな🐺🐺🐺🐺🐺
sadnessojisan
2
1.3k
Featured
See All Featured
A better future with KSS
kneath
230
16k
Producing Creativity
orderedlist
PRO
335
37k
5 minutes of I Can Smell Your CMS
philhawksworth
198
18k
Why You Should Never Use an ORM
jnunemaker
PRO
49
7.9k
Faster Mobile Websites
deanohume
295
29k
Practical Orchestrator
shlominoach
178
8.9k
The Art of Programming - Codeland 2020
erikaheidi
35
11k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
657
120k
The Power of CSS Pseudo Elements
geoffreycrofte
52
4.3k
Clear Off the Table
cherdarchuk
79
290k
Git: the NoSQL Database
bkeepers
PRO
418
60k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
236
1.1M
Transcript
NavigationBarとの付き合い方 shichimitoucarashi keisuke yamagishi
自己紹介 Keisuke yamagishi Github: https://github.com/keisukeYamagishi Twitter: https://twitter.com/shichimi_0_o App: https://apps.apple.com/jp/app/shichimi/id1452292881
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ライブラリです。