Use Opendns to Cross the Great Firewall in China

once upon a time

  • we can log in facebook and google directly
  • but nowadays we can not
  • and because DNS hijacking and DNS cache posioning, we can not log in directly anymore
Read more
Comments

IOS 报表类库(trial 30days)

一个非常容易使用的报表类库

  • NChart3D
    • 但是只能免费使用30天
    • 并且经过真机调试
      • 效果做得很好,除了不能点击某个地方显示具体信息之外其他都做得很好
      • 比如可以方法缩小,左右拖,平移旋转都行
Read more
IOS
Comments

IOS UILabel and UITextfield

label

  • 相当于android里面的textview
  • 用setText来设置内容
  • setBackground来设置背景颜色
Read more
IOS
Comments

IOS Selector(jump to the Other Page)

响应事件或者跳转

  • 使用每个控件里面的action的selector
Read more
IOS
Comments

IOS UIButton

IOS的button其实和其他的控件使用方法差不多

  • 首先初始化button,用CGRectMake把控件画在view上
  • 使用setTitle设置button的文字
  • 使用layer来设置边界
  • 用action里面设置selector来跳转或者响应事件
Read more
IOS
Comments

IOS Segment Control

segment control

  • 这一段是使用CGrectmake在view上直接按照坐标大小画segment control
  • 因为tabbar只能按照默认的放在底部
  • 因此要使用放在顶部的类似tabbar的效果有两种方式
    • 一种就是segment control,每点击一个item就跳转到那个item对应的view那里
    • 还有一种是使用button来仿造tabbar
    • 不过总体来说还是button效果好一点
Read more
IOS
Comments