MainViewController.h#import<UIKit/UIKit.h>
@interfaceMainViewController:UIViewController
@property(nonatomic,retain)UISwitch*leftSwitch;
@endMainViewController.m#import"MainViewController.h"
@interfaceMainViewController()
@end
@implementationMainViewC..
分类:
其他好文 时间:
2014-09-04 10:37:49
阅读次数:
174
在
iOS7中,如果某个UIViewController的self.view第一个子视图是UIScollView,同时当这个
UIViewController被push或initWithRootController成为
UINavigationController控制的Controller时,这个UIViewController的view的子视图
UIScollView的所有子视图,都会被下移64px。这个..
分类:
其他好文 时间:
2014-09-03 15:07:17
阅读次数:
159
有两个图片新建一个CloseLight类CloseLight.himport<UIKit/UIKit.h>
@interfaceCloseLight:UIViewController
@property(nonatomic,assign)NSIntegertag;
@endCloseLight.m#import"CloseLight.h"
@interfaceCloseLight()
@end
@implementationCloseLight
-(id)initWithNib..
分类:
其他好文 时间:
2014-09-03 11:25:56
阅读次数:
205
头文件:#import
@classArticleViewController;
@interfaceArticleScrollViewController:UIViewController{
//不使用数组,看起来更明了,为了节省内存同时还要看起来无缝,3个view最好
ArticleViewController *article1;
ArticleViewController *article2;
ArticleViewCo..
分类:
其他好文 时间:
2014-09-02 10:39:45
阅读次数:
235
/创建缩小了的视图myWeiBoImageVC = [[UIViewController alloc] init];myWeiBoImageVC.view.clipsToBounds = YES;myWeiBoImageVC.view.alpha = 0.0;myWeiBoImageVC.view....
分类:
移动开发 时间:
2014-08-31 19:55:21
阅读次数:
186
在iOS开发过程中,一般都是UIViewController来控制UIView的行为,一般很少方向交互,即UIView的特性变化后调用UIViewController的相应的方法,在遇到这种情况,大多数都采用了在UIView的子类中放一个UIViewController的指针,当UIView需要调用UIViewController的方法的时候,就可以通过这个指针来实现了。
这种方法是有效的(C/C++常用哦),但总是觉得不够优雅,有没有其他办法来实现呢,答案是肯定的,估计很多人都已经想到了,那就是委...
分类:
移动开发 时间:
2014-08-29 11:09:57
阅读次数:
4413
一、 创建项目 storyboard 。二、 往ViewController上拖一个UITableView上去。 此时,建立连线,右键TableView,设置datasource,到Controller上。三、 在.h文件中,UIViewController要遵守UITableViewData...
分类:
其他好文 时间:
2014-08-26 11:29:15
阅读次数:
187
在IOS编程中,很多人没有理解实例变量与属性的区别,我根据自己的经验,这这里与大家分享下这里面的区别,下面我写一个简单的例子:.h@interface MyController :UIViewController{ UILabel *_myLabel;//这里是实例变量声明}@property (....
分类:
移动开发 时间:
2014-08-23 16:32:11
阅读次数:
210
@interface UINavigationController (CustomTransition)- (void) pushWithCustomAnimation:(UIViewController *) controller;- (void) popWithCustomAnimation;@...
分类:
其他好文 时间:
2014-08-23 13:50:20
阅读次数:
160
当使用 initWithNibName 函数, 并使用 由nib文件生成的ViewController 的view属性时候,遇到这个问题。 //load loc.xib UIViewController * UIVC = [[UIViewController alloc] initWithNibName:@"loc" bundle:n...
分类:
其他好文 时间:
2014-08-20 22:49:53
阅读次数:
241