Xcode 4.6 Tutorial - UITableView with Search Bar (Part 1)

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ธ.ค. 2024

ความคิดเห็น • 29

  • @esorensen
    @esorensen 11 ปีที่แล้ว +2

    Very clear and straight forward. Going to the next video...

  • @ArtistDavidU7ub3
    @ArtistDavidU7ub3 11 ปีที่แล้ว

    Very nice, clean, clear and up to date. Thank You.

  • @myvideoportfolio
    @myvideoportfolio 11 ปีที่แล้ว

    Seriously excellent tutorial Josh.

  • @bchambers94
    @bchambers94 10 ปีที่แล้ว

    Thanks Josh, very helpful!

  • @knikravesh
    @knikravesh 11 ปีที่แล้ว

    Thank you so much! Amazing tutorial!!

  • @heshanthanadeeshan7383
    @heshanthanadeeshan7383 10 ปีที่แล้ว

    Grate tutorial bruce!!!! Thanks a lot

  • @ntnelos
    @ntnelos 11 ปีที่แล้ว +2

    thanks bruce!!

  • @alexthurston9940
    @alexthurston9940 11 ปีที่แล้ว

    Nice tutorial!

  • @sabinemtl6721
    @sabinemtl6721 11 ปีที่แล้ว

    Great job, thanks !

  • @cyruskiani
    @cyruskiani 11 ปีที่แล้ว

    Thank you!

  • @craxue
    @craxue 10 ปีที่แล้ว

    its very useful, tks !!!

  • @gerardomagtalas
    @gerardomagtalas 11 ปีที่แล้ว

    great

  • @configrzv2769
    @configrzv2769 11 ปีที่แล้ว +2

    Hi Josh,
    the method setdetailLabelContents is not visible in MasterTableViewController.I imported DetailViewController.h and it didn't appear. What can I do ? thanks !

    • @joshbrucie
      @joshbrucie  11 ปีที่แล้ว

      Hi Config, Not sure what is causing that to do this, as it should work just fine, I can provide you access to the source code which is located on Github, so feel free to download or fork a copy of it. github.com/Josh-Bruce/SearchMe

    • @configrzv2769
      @configrzv2769 11 ปีที่แล้ว

      Josh Bruce Thank you Josh. I succeeded to do it .

  • @nebulousJames12345
    @nebulousJames12345 11 ปีที่แล้ว +1

    Is there something wrong with synthesize??

    • @joshbrucie
      @joshbrucie  11 ปีที่แล้ว

      Don't use synthesise anymore unless you override the getter and setter methods :)

    • @nebulousJames12345
      @nebulousJames12345 11 ปีที่แล้ว

      Josh Bruce Too much code not using it!

  • @JudaBenHur
    @JudaBenHur 11 ปีที่แล้ว

    Helo!!!!
    How can I use a plist to populate the array?
    Thanks!

    • @joshbrucie
      @joshbrucie  11 ปีที่แล้ว

      You could use a plist to populate an array of data, but don't store too much data in your plist files :)

    • @JudaBenHur
      @JudaBenHur 11 ปีที่แล้ว

      Josh Bruce Thanks Bruce, but I need to know, how can I use the plist to populate the arras in the your example project. Thanks.

    • @joshbrucie
      @joshbrucie  11 ปีที่แล้ว +2

      First you need to create the plist file and fill it in with the contents you want.
      Then to get the file you use this and change the URLForResoure to the name of your file.
      NSURL *file = [[NSBundle mainBundle] URLForResource:@"myplist" withExtension:@"plist"];
      Then here we are getting a dictionary of of the plist
      NSDictionary *plistContent = [NSDictionary dictionaryWithContentsOfURL:file]
      You can then use the dictionary to get the count and the object at index etc. Hope this helps :)

    • @JudaBenHur
      @JudaBenHur 11 ปีที่แล้ว +1

      Josh Bruce Thanks so much!

  • @Effectsmaster
    @Effectsmaster 11 ปีที่แล้ว

    How can I add a subtitle in the rows too? :)

    • @joshbrucie
      @joshbrucie  11 ปีที่แล้ว

      You can use the cells detailTextLabel and then make sure that the cells style is also set to detail in the attributes inspector :)

  • @AAAAAA-vn1wl
    @AAAAAA-vn1wl 9 ปีที่แล้ว

    Would you please upload the source code for use? please~

    • @joshbrucie
      @joshbrucie  9 ปีที่แล้ว

      +이동현 github.com/Josh-Bruce/SearchMe

    • @AAAAAA-vn1wl
      @AAAAAA-vn1wl 9 ปีที่แล้ว

      Thank you so much!!!