//// ViewController.swift// http_request//// Created by andy on 14-9-6.// Copyright (c) 2014年 andy. All rights reserved.//import UIKitclass ViewCo...
分类:
移动开发 时间:
2014-09-18 23:41:54
阅读次数:
378
这整个是一个cell,框框的放的image(有很多图片,可以左右滑动,我用iCarousel做的,这个的代理写在自定义cell类里面的)。现在需要点击图片进入下一个页面。。。。现在我点击图片,都会进入到自定义cell类里面的代理里,但是cell类里面,是不让我弹出下一个viewcontroller的。。??不然用[self.navigationController pushViewControll...
分类:
移动开发 时间:
2014-09-18 19:03:24
阅读次数:
212
UITabBarController详解UITabBarController使用详解 UITabBarController是IOS中很常用的一个viewController,例如系统的闹钟程序,ipod程序等。UITabBarController通常作为整个程序的rootViewControlle....
分类:
其他好文 时间:
2014-09-18 00:47:43
阅读次数:
357
//// ViewController.m// 计算器//// Created by apple on 14-9-17.// Copyright (c) 2014年 apple. All rights reserved.//#import "ViewController.h"@interface V...
分类:
其他好文 时间:
2014-09-17 21:46:22
阅读次数:
234
#import "ViewController.h"@interface ViewController (){ char op1; NSString *op3, *op4;}@property (weak, nonatomic) IBOutlet UILabel *resultLabe...
分类:
其他好文 时间:
2014-09-17 21:45:22
阅读次数:
218
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *resultLabel;@end NSString *op1,*op2,*result; ch...
分类:
其他好文 时间:
2014-09-17 21:43:52
阅读次数:
344
计算器制作,虽然很多代码老师已经写了,但是自己对着打还是遇到很多问题,虽然有些语法还是不太清楚,但是大致通过询问同学,老师.运行流程已经运行代码逻辑思想有一定了解了#import @interface ViewController : UIViewController@property (weak,...
分类:
其他好文 时间:
2014-09-17 21:36:22
阅读次数:
239
注意这里是:Tab Bar 不是Tab Bar Controller. Tab bar是继承UIView,所以可以添加到ViewController里。是View就可以add到另一个View上去。Tab Bar Controller是新建View视图。XX.h 里需要定义UITabBar,并且要引用...
分类:
其他好文 时间:
2014-09-17 01:04:41
阅读次数:
296
//// ViewController.m// zwj-手势识别-缩放和旋转//// Created by zwj on 14-9-16.// Copyright (c) 2014年 zwj. All rights reserved.//#import "ViewController.h"@inte...
分类:
移动开发 时间:
2014-09-16 12:18:10
阅读次数:
250
第一种方法:在NavigationController.m文件中执行方法-(UIStatusBarStyle)preferredStatusBarStyle{returnUIStatusBarStyleLightContent;}第二种方法:在ViewController.m文件中先将自身的NavigationController的navigationBar隐藏self.navigationController.navigationBarHidden..
分类:
其他好文 时间:
2014-09-16 02:50:20
阅读次数:
168