Тёмный

The secret to the UIScrollView 

Swift Arcade
Подписаться 10 тыс.
Просмотров 13 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@egemenbalban4578
@egemenbalban4578 2 года назад
BEST VIDEO ABOUT SCROLL VIEW!!! Saved me 10 hours of work.
@babatundedev
@babatundedev Год назад
This video is awesome, I always come back regularly to watch it again.
@user-lz3ut8qp5j
@user-lz3ut8qp5j 2 года назад
Finally figured out how to do it thanks to this video. I embedded my components in a StackView within the Content View, so that I do not need to set constraints between my components. Also, each component in the stack must have a height constraint (including tables), so the stack knows how big it needs to be . Luckily, tables can still scroll inside of a scroll view.
@NeKandidatNeDeputat
@NeKandidatNeDeputat 2 года назад
Спасибо большое за видео, наконец-то настроил ScrollView)
@bojanmarkovic9594
@bojanmarkovic9594 2 года назад
Useful video but one thing to add: You could also set equal width constraint on Frame Layout Guide instead on superview(i mean on main view of view controller) because Content Layout Guide is using for set leading, trailing, top and bottom constraints and Frame Layout Guide is using for set width or height constraint depends if you need vertical or horizontal scroll :)
@swiftarcade7632
@swiftarcade7632 2 года назад
Great point - thanks for sharing. I am going to try that next time. Thanks for the comment.
@kimgwangpa
@kimgwangpa 2 года назад
Nice video with nib. I also spent time to make scroll view scrollable programmatically and ended up this solution.
@swiftarcade7632
@swiftarcade7632 2 года назад
Great to here is works programmatically too Dae. Good stuff. Thanks for sharing.
@christienjakepacia3155
@christienjakepacia3155 15 дней назад
so much helpful video for me! I will follow you
@Biizado
@Biizado Год назад
Thank you for the video, helped a lot!
@konstantin2387
@konstantin2387 2 года назад
Thanks god that you exist! You saved me!
@aliufemi
@aliufemi 2 года назад
Nice video. Thanks a lot for it. I would love to see the same thing done programmatically.
@swiftarcade7632
@swiftarcade7632 2 года назад
Thanks Femi. I will post something if I get around to it. I like working programmatically too. Cheers.
@Bradbomkamp
@Bradbomkamp 3 года назад
This is fantastic. Bookmarking this video for sure. Thanks!
@swiftarcade7632
@swiftarcade7632 3 года назад
Awesome! Thank you so much Brad. Glad it of help. Cheers.
@vladimirmoor
@vladimirmoor 2 года назад
Big thanks man! Life-saving video!
@swiftarcade7632
@swiftarcade7632 2 года назад
Most welcome! Glad you enjoyed.
@JunaidKhan-ny8tu
@JunaidKhan-ny8tu 3 года назад
Love your content
@swiftarcade7632
@swiftarcade7632 3 года назад
Thank you so much Junaid. I try to put out useful stuff. All the best. Jonathan.
@Nick6661992
@Nick6661992 3 года назад
Love your videos. Would really appreciate to see your take on creating an OTP (one time passcode) screen!
@swiftarcade7632
@swiftarcade7632 3 года назад
@@Nick6661992 Hi Niko. Do you mean the UI, or just the mechanics behind how a one time passcode screen would work.
@Nick6661992
@Nick6661992 3 года назад
@@swiftarcade7632 I mean how would you approach it in the UI and code fields and the mechanics behind it. I can't seem to find any straight forward material about it. And I really like your approach and teaching so it could be awesome. thanks a lot.
@swiftarcade7632
@swiftarcade7632 3 года назад
@@Nick6661992 Will keep my eye open and see if I get an opportunity for this. Cheers. And thx!
@garyash7607
@garyash7607 3 года назад
In interface builder when you command drag and click the connection line to another view in the side panel to access the relationship popup menu you hold the shift down to click/uncheck multiple items in the popup menu. It can be a small time saver
@swiftarcade7632
@swiftarcade7632 3 года назад
Oh that is great Gary - thank you. Didn't know that shortcut was there. They all add up! Cheers.
@marcel5235
@marcel5235 2 года назад
well this is awsome, please more content for xib and interface builder from production (tips and goodies how to actually do scalable project in this) I have bought you course on Udemy btw, and great stuff about protocol delegate pattern
@swiftarcade7632
@swiftarcade7632 2 года назад
Thank you so much Marcel. Really appreciate the comment. Will do!
@ravneetsingh8790
@ravneetsingh8790 Год назад
what should we do if we want to limit the background image to scrolling in scrollview
@chickentree8457
@chickentree8457 2 года назад
How do you get this to work if it’s a text view? Also great video.
@swoleavocado
@swoleavocado 3 года назад
I was going to ask why storyboards, but you explained in the video--you're working on a project with nibs.
@swiftarcade7632
@swiftarcade7632 3 года назад
Yup - no other reason than that. One advantage of nibs however (from a teaching point of view) is less code. I can put all the auto layout etc in the nib which sometimes make the core concept I am trying to get across easier to understand.
@chickenduckhappy
@chickenduckhappy Год назад
Ill show my face but * angle, * lighting, * camera, lets just point the monitor's built-in crap lens directly into my mouth and show the very personal nitty-gritty of what's going inside there while talking. Two alternatives: - just showing content - creating an at least superficially thought-through video setup. I find abysmal videos less infuriating than bad audio but they still make me think, y tho? 🤔 I love your use of the explanatory part of the wikipedia article about this weird application of Cicero's "On Ends" as a text placeholder, tho 😎
@artjeka
@artjeka 3 года назад
Thanks, video is useful 👍 But: the sounds in transitions are suck (and not funny because so ugly), video layout (xcode + camera) is small
@swiftarcade7632
@swiftarcade7632 3 года назад
Thanks for the comment Art. I will try to make them bigger next time. Cheers.
@AnHoKuka
@AnHoKuka 2 года назад
Thanks for this video. Really good approach. I really like your videos with those 8bit inserts. But there is the thing. If you want to support Landscape orientation you should change one Constraint. Instead of: Content width = Parent of ScrollView Width make: Content width = Frame Layout Guide Width. That what is worked to me.
@swiftarcade7632
@swiftarcade7632 2 года назад
Great tip Anton. Yes - thank you for sharing.
@williamtangka793
@williamtangka793 2 года назад
aaa thank uu very much
@swiftarcade7632
@swiftarcade7632 2 года назад
Very welcome William.
@girishparate6410
@girishparate6410 2 года назад
Thank you.
@swiftarcade7632
@swiftarcade7632 2 года назад
Most welcome Girish.
@dennycad7859
@dennycad7859 2 года назад
Awesome content. As I said earlier, your channel is a gold mine. Keep going
@swiftarcade7632
@swiftarcade7632 2 года назад
Will do. Thank you so much for the comment and feedback Denny. All the best.
Далее
Grouping network calls like a boss - DispatchGroup
14:35
Watermelon magic box! #shorts by Leisi Crazy
00:20
Getting started with Combine + UIKit in Swift
23:45
Просмотров 18 тыс.
Understanding UIScrollViews
9:04
Просмотров 750
Introduction to Core Animation (iOS/Swift)
24:30
Просмотров 17 тыс.
I Made 200 Python Projects...Here Are My 5 FAVORITES
11:23
The Home Server I've Been Wanting
18:14
Просмотров 138 тыс.
UIScrollViews in iOS with Swift
20:06
Просмотров 1,3 тыс.