码迷,mamicode.com
首页 >  
搜索关键字:self    ( 14215个结果
ios7中使用scrollview来横向滑动图片,自动产生偏移竖向的偏移 问题
如图红色为scrollview的背景色,在scrollview上加了图片之后,总会有向下的偏移 设置contentOffset也不管用 在ios7中controller有个automaticallyAdjustsScrollViewInsets属性,默认为YES if (iOS7&&[self respondsToSelector:@selector(automaticall...
分类:移动开发   时间:2014-08-01 16:07:31    阅读次数:242
UINavigationcontroller页面跳转动画
第一种方式: MyViewController *my=[[MyViewController alloc] init]; [self.navigationController pushViewController:my animated:NO]; //因为一个事件循环机制中 ...
分类:其他好文   时间:2014-08-01 13:12:01    阅读次数:142
iOS 点击空白处收回键盘的几个简单代码
//收回键盘1-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self.view.subviews enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL....
分类:移动开发   时间:2014-08-01 12:59:21    阅读次数:257
IOS 根据数组的个数对UIButton进行重复或循环使用
//设置一个viewview = [[UIView alloc] initWithFrame:CGRectMake(0, 38, 320, 30)];view.backgroundColor = [UIColor lightGrayColor];[self.view addSubview:view]...
分类:移动开发   时间:2014-08-01 12:51:11    阅读次数:254
iOS popToViewController具体用法
[self.navigationControllerpopToViewController:[self.navigationController.viewControllersobjectAtIndex:1]animated:YES];或 searchBarViewController *sear....
分类:移动开发   时间:2014-08-01 10:46:41    阅读次数:199
ASIFormDataRequest 上传图片
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [self request];}- (voi...
分类:其他好文   时间:2014-08-01 10:27:41    阅读次数:247
程序打印自身代码的两种方法
程序打印自身代码的两种方法 方法一:利用fopen,打开可执行程序对应的source code file /***************************************** code writer : EOF code file : print_my_self.c code date : 2014.08.01 e-mail: jasonleaster@gm...
分类:其他好文   时间:2014-08-01 02:25:40    阅读次数:264
【python】获取51cto博客的文章列表
python的正则与网页操作练习二:importre importurllib.request #51ctourlcode=gb18030 classdown51web: s_url=‘‘ s_blogid=‘‘ s_blogpages=‘‘ s_html=‘‘ s_code=‘‘ def__init__(self,url,code): self.s_url=url self.s_code=code defget_html(self): self.s_html=urllib.r..
分类:编程语言   时间:2014-08-01 00:14:21    阅读次数:334
去除NavigationBar下面的线
self.navigationController.navigationBar.barStyle=UIBaselineAdjustmentNone;
分类:其他好文   时间:2014-07-31 21:15:17    阅读次数:151
改变iOS7上tableview的分割线长、颜色问题
# 改变iOS7上tableview的分割线长、颜色问题     if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {         [self.tableView setSeparatorInset:UIEdgeInsetsZero];         [self.tableView set...
分类:移动开发   时间:2014-07-31 13:32:06    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!