Learn Swift for Beginners - Ep 16 - Arrays

Поделиться
HTML-код
  • Опубликовано: 29 янв 2025

Комментарии • 39

  • @CodeWithChris
    @CodeWithChris  6 лет назад

    QOTD ⚡Are arrays making sense to you? Let me know!👇 Kick start your own app with my free 7 Day App Action Plan ➡️ bit.ly/7dplan

  • @ahmadqodirov7899
    @ahmadqodirov7899 7 лет назад +9

    thanks so much Chris, I have downloaded all 16 episodes so I can practice and watch your videos, even I am offline, they are great and big help in accomplishing coding tasks and becoming great developer, please dont stop releasing them

  • @diegodiegendo1998
    @diegodiegendo1998 7 лет назад

    Very clear explanations. I have to say, swift seems much more simple than javascript.

  • @jasonderulo4184
    @jasonderulo4184 7 лет назад +1

    Thank you for making everything easy to understand. Please keep updating more.

    • @CodeWithChris
      @CodeWithChris  7 лет назад +3

      Jason Derulo! Thanks for watching :)

  • @themikias
    @themikias 7 лет назад +2

    That was awesome man! I really like the simplicity of Swift more than Java.

    • @CodeWithChris
      @CodeWithChris  7 лет назад

      Thanks for watching and your kind words Mickey!

  • @shawntaylor9509
    @shawntaylor9509 6 лет назад +1

    7:05 - how does the for loop know how many items are in the array, as we are merely saying?:
    for item in d - how does the loop know the range?
    In the previous loop the range was stipulated as: for counter in 0...2

    • @CodeWithChris
      @CodeWithChris  6 лет назад +1

      For loops you have a choice to limit with a number or a range. If you use a loop without instruction, by default it knows it has to cover all items. It's included, for free! (Yeah!!!!)
      @AdrienVillez

    • @shawntaylor9509
      @shawntaylor9509 6 лет назад

      @@CodeWithChris so in the example: (for item in d), the value of the array is assigned to (item). What is is assigned to counter (for counter in 0...2)? - is the index of the array assigned to (counter) or is the value of the loop's counter assigned to (counter)?

  • @Kromush1995
    @Kromush1995 5 лет назад +1

    So, at 9:58, you're just saying that to add another element/s to the existing array, you basically create another array and concatenate the newly created array to the old one.

  • @michaelandersen1396
    @michaelandersen1396 7 лет назад

    Hey Chris! Very nice work! Can you share with me what software you use to edit the video, got some nice zooms and highlighting here and there...

  • @huntert3195
    @huntert3195 7 лет назад

    Chris, also can you show how to auto-sync things on apps?

  • @morriesong
    @morriesong 7 лет назад +1

    thank you for the video every time! i was wondering if you could make some change with the viewing screen. because i'd like to practice while i'm watching the video but since there's many wasted area on the side of the screen while you write the code. and i can't really see the text well. but i can't watch it with the full screen because i need to practice at the same time. ideally i'd like to watch the video with PIP mode but with that, i can't make the size of the screen bigger so have hard time. i would be really nice if you could make your video screen adjustment while you're writing code so that i can read the text. that would help me a lot.

    • @CodeWithChris
      @CodeWithChris  7 лет назад +1

      Hey Morriesong, thanks for the feedback! I'll try to do that

  • @daniellaerachannel
    @daniellaerachannel 7 лет назад +5

    awesome video

  • @gregbacon756
    @gregbacon756 7 лет назад

    I am familiar with C/C++ but since you are allowed to declare arrays without specifing how long/big they are, does that make linked lists useless in Swift?

  • @CH-nu2pq
    @CH-nu2pq 7 лет назад

    hi, Chris, and than you for amazing video. I have one question. why did you make e = [string](). ??? you didn't use the variance. my English is not good so if you explained about it in the video, can you write the reason down here... thank you.

  • @allin1555
    @allin1555 7 лет назад +1

    nice explanation, please upload video on closure , extension , protocol and more topic

  • @laufai0616616
    @laufai0616616 7 лет назад +1

    hi chris, nice tutorial. im a beginner for swift. would you please share about how to split an integer to digits? for example, 96 -> 9,6
    appreciate!

    • @CodeWithChris
      @CodeWithChris  7 лет назад

      Hey Nam, check out this thread: stackoverflow.com/questions/30415937/swift-split-int-to-its-individual-digits

  • @SoloCreationz
    @SoloCreationz 7 лет назад

    If I want to build an app that doubles as social media and buy/sell. What should I learn/ videos I should watch from you

  • @Shqtucke
    @Shqtucke 6 лет назад +1

    I'm really enjoying your lessons... Do you have any on local JSON files?

    • @CodeWithChris
      @CodeWithChris  6 лет назад +1

      Just add the JSON to your Xcode project and reach it by using Bundle.
      developer.apple.com/documentation/foundation/bundle

  • @huntert3195
    @huntert3195 7 лет назад +1

    Chris, can you do videos on Touch ID? Thanks

    • @CodeWithChris
      @CodeWithChris  7 лет назад

      Hey Hunter, thanks for the feedback! I'll see about that!

  • @jasonderulo4184
    @jasonderulo4184 7 лет назад

    We have been waiting for Ep-17 ......... Please Chris.

    • @CodeWithChris
      @CodeWithChris  7 лет назад

      +Jason Derulo just edited today. It'll be posted tomorrow! Thanks for your support!!

    • @jasonderulo4184
      @jasonderulo4184 7 лет назад

      Thank you SOOOOO Much!!! Can't wait!!!!

  • @MyNameIssaSimon
    @MyNameIssaSimon 7 лет назад +1

    Will you make a tutorial on "how" to use these skills in making an app. What I basically mean is will you make a "how to make an app based on knowledge from this series" video?

    • @CodeWithChris
      @CodeWithChris  7 лет назад

      Yup! Just check out the other playlists on my Channel. This video series is specially just focused on the language. My other one had a mixture of all the skills required. Specifically, this one: codewithchris.com/how-to-make-iphone-apps-with-no-programming-experience/

  • @kineticuncertainty
    @kineticuncertainty 6 лет назад

    swift seems like a modern BASIC language

    • @CodeWithChris
      @CodeWithChris  6 лет назад

      it is really confortable to use and learn
      -Adrien