zoukankan      html  css  js  c++  java
  • Designing Interfaces

    The iPhone SDK helps you craft user interfaces.

    the visual classes you'll work with and discuss their roles in the interface design.

    You read about controllers that work with these visual classes and   discover how the handle tasks like device reorientation.

    laying out and customizing interface.

    both on IB-created interfaces and Objective-C centered ones.

    UIView and UIWindow

    Nearly everything that appears on the iPhone's screen is a child of the UIView classes.

    Views act like litter canvas that you can draw on with colors,pictures,and buttons.You can 

    draw them around the screen.You can resize them.You can layer them .

    Views provide the basic component of user interfaces.

    The iPhone rule goes like this:

    one Window,many views.     very important 

    UIWindow is the TV set,and UIViews are the actors on your favorite show. The can move around the Tv set,

    The can move around the screen,appear, and disappear,and may change the way they look and behave over time.

    UIVWindow normally stays still.

    You can create several UIWindow in stances in the same application,but

    you can watch just one at a time.

    UIViews are user interface building blocks.  They provide visual elements

    the are shown onscreen and invite user interaction.

  • 相关阅读:
    修改weblogic jvm启动参数
    weblogic部署步骤
    weblogic安装步骤
    sqldeveloper 导出数据库
    VO与PO 的理解
    【Hyper-V】与【VirtualBox】【VMware】冲突的解决方法
    xstream 实现simplebean2xml ,xml2simplebean
    eclipse中SVN报错解决
    点击eclipse包报错
    myeclipce项目导入eclipse中报错
  • 原文地址:https://www.cnblogs.com/yushunwu/p/2653576.html
Copyright © 2011-2022 走看看