如图红色为scrollview的背景色,在scrollview上加了图片之后,总会有向下的偏移
设置contentOffset也不管用
在ios7中controller有个automaticallyAdjustsScrollViewInsets属性,默认为YES
if (iOS7&&[self respondsToSelector:@selector(automaticall...
分类:
移动开发 时间:
2014-08-01 16:07:31
阅读次数:
242
第一种方式: MyViewController *my=[[MyViewController alloc] init]; [self.navigationController pushViewController:my animated:NO]; //因为一个事件循环机制中 ...
分类:
其他好文 时间:
2014-08-01 13:12:01
阅读次数:
142
//收回键盘1-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self.view.subviews enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL....
分类:
移动开发 时间:
2014-08-01 12:59:21
阅读次数:
257
//设置一个viewview = [[UIView alloc] initWithFrame:CGRectMake(0, 38, 320, 30)];view.backgroundColor = [UIColor lightGrayColor];[self.view addSubview:view]...
分类:
移动开发 时间:
2014-08-01 12:51:11
阅读次数:
254
[self.navigationControllerpopToViewController:[self.navigationController.viewControllersobjectAtIndex:1]animated:YES];或 searchBarViewController *sear....
分类:
移动开发 时间:
2014-08-01 10:46:41
阅读次数:
199
- (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的正则与网页操作练习二: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
self.navigationController.navigationBar.barStyle=UIBaselineAdjustmentNone;
分类:
其他好文 时间:
2014-07-31 21:15:17
阅读次数:
151
# 改变iOS7上tableview的分割线长、颜色问题
if ([self.tableView
respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView
setSeparatorInset:UIEdgeInsetsZero];
[self.tableView
set...
分类:
移动开发 时间:
2014-07-31 13:32:06
阅读次数:
198