Search code examples
interface-builderdrawdrawrectangle

IB builder or programmatically draw?


What do you advise? should I programmatically draw my textfields, labels, images or should I use IB?

Would it make any difference? I have scrolling issues (bit jerky) but not something I cannot live without!


Solution

  • ok. problem solved. you were right and wrong regarding the IB...

    to explain myself:

    I was loading my cell from a nib file.

    The trick and thanks goes to this site: http://iphoneincubator.com/blog/tag/dequeuereusablecellwithidentifier

    i forgot to set my cell identifier to the nib file so i was creating the cells every time they were scrolled off the screen!

    so tip!

    When you load from nib ALWAYS put the right identifier in the "identifier" place!!!

    thanks to nolimitsdude who actually pointed to the right way!!