为 UIImageView 子类的实例变量赋予默认值
我创建了一个 UIImageView 子类。我有 .h 和 .m 文件。我的 UIImageView 子类中有一个属性。我将 UIImageView 拖到 UIViewController 中。现在,我想为该属性指定一个默认值。例如,我有一个枚举,根据该枚举值,我想设置我的 imageView 的图像。如何给出这个值,当我不调用init方法时,我直接从xib加载它。我被困在这个问题上。花了很多时间,却没能解决。
I have created a UIImageView subclass. I have both the .h and .m files. I have a property in my UIImageView subclass. I dragged a UIImageView in a UIViewController. Now, I want to give a default value to the property. For example, i have an enum, and according to that enum value, i want to set the image of my imageView. How to give this value, when i am not calling the init method, i am loading it directly from the xib. I am stuck on this. Spent a lot of time, but not able to work it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我解决了。我重写了该方法:
并实例化了该方法中的值!
Ok i worked it out. I overrided the method:
and instantiated the values in that method!