I’m trying to add TTImageView to an XIB file by adding a regular UIImageView control then changing its class name to TTImageView in the Identity Inspector, but it can’t recognize the class TTImageView, IB keeps reverting the class name to UIImageView. I have added Three20 framework correctly to my project, what should I do to add TTImageView using IB ?
I’m trying to add TTImageView to an XIB file by adding a regular UIImageView
Share
TTImageViewis derived fromUIViewnotUIImageView.You’ll have to use a
UIViewin your XIB if you want to set it as aTTImageView.See here