zoukankan      html  css  js  c++  java
  • NSBundle UIImageView &UIButton

    1.NSBundle

    1> 一个NSBundle代表一个文件夹,利用NSBundle能访问对应的文件夹

    2> 利用mainBundle就可以访问软件资源包中的任何资源

    3> 模拟器应用程序的安装路径

    /Users/aplle/资源库/Application Support/iPhone Simulator/7.1/Applications

    2.UIImageView和UIButton

    1> 使用场合

    * UIImageView: 如果仅仅是显示图片,不需要监听图片的点击

    * UIButton: 既要显示图片,又要监听图片的点击

    2> 相同:能显示图片

    3> 不同点

    * UIButton能处理点击事件, UIImageView不能处理点击事件

    * UIButton既能显示图片, 又能显示文字

    * UIButton能同时显示两张图片

    * UIButton继承自UIControl, 因此默认就能处理事件

    * UIImageView继承自UIView, 因此默认就不能处理事件

    3.Xcode文档安装路径

    /Applications/Xcode.app/Contents/Developer/Documentation/DocSets

    4.Xcode模拟器安装路径

    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs

  • 相关阅读:
    USACO 6.4 章节
    USACO 6.3 章节 你对搜索和剪枝一无所知QAQ
    USACO 6.1 章节
    USACO 5.5 章节
    USACO 5.4 章节
    USACO 5.3 章节
    99乘法表
    mini整数计算器
    python爬虫-爬取天气预报内容
    python实时监控服务器性能
  • 原文地址:https://www.cnblogs.com/lan1x/p/5330517.html
Copyright © 2011-2022 走看看