Вопрос

I am very well know about full form of IB but i want to know the exact use of IBoutlet

what is the use of IBoutlet in ios in iPhone apps ?

Это было полезно?

Решение

You need to declare a variable or a property as an IBOutlet to relate it to the objects that you define in your XIB. ....

Think of the view defined in the XIB as a separate routines that are hidden to your code. The objects - UItextfields, UIImageview etc. that are defined in the XIB are created outside your code (.m ) file IBOutlet allows you to refer to them in your code.

Другие советы

IBOutlet is macro that define variables and methods that are related to in Interface Builder.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top