Domanda

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 ?

È stato utile?

Soluzione

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.

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top