Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
618 views
in Technique[技术] by (71.8m points)

cocoa touch - UILabel UITextField UITextView

What's the fundamental difference between them?

Is a UITextField that's not editable is effectively a UILabel?

Are those essentially the same?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
  • UILabel: "The UILabel class implements a read-only text view."
  • UITextField: "A UITextField object is a control that displays editable text and sends an action message to a target object when the user presses the return button."
  • UITextView: "The UITextView class implements the behavior for a scrollable, multiline text region."

So:

  • labels are read-only
  • textfields are editable, and provide horizontal character seeking (not really scrolling) when the text is too long to display all at once. Generally used to input short text.
  • textviews are also editable, but provide vertical scrolling when the text is too long to display all at one.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...