- 博客(6)
- 收藏
- 关注
翻译 关于presentViewController可能会出现的问题
原文链接:stackoverflow当在viewDidLoad方法里面执行[self presentViewController:]时,会出现如下的报错 Warning: Attempt to present < finishViewController: 0x1e56e0a0 > on < ViewController: 0x1ec3e000> whose view is not in the
2017-04-24 21:17:51 1870
原创 关于MKAnnotation的循环利用和一开始显示标注的问题
为MKAnnotation的coordinate赋值后,设置[self.mapView selectAnnotation:self.annotation animated:YES]; 才能显示标注// 长按选中地址- (void)longPress:(UILongPressGestureRecognizer *)longPress{ if (longPress.state == UIG
2017-04-16 14:20:35 455
原创 关于控制器的子视图加载
控制器的子视图的加载为懒加载- (void)viewDidLoad { [super viewDidLoad]; // 创建第二个控制器 TheSecondController *secondVC = [[TheSecondController alloc] init]; // 创建第三个控制器 TheThirdController *thirdVC = [
2017-03-18 22:21:11 224
原创 iOS 关于AutoLayout和UIScrollView
UIScrollView子控件设置自动布局后不能滑动原因:一般是由于与UIScrollView的依赖关系没设置好,导致contentSize虽然有值,但就是滑动不了。UIScrollView的子控件并不是宽高和上下左右都需要设置这里以往scrollView中添加两个控件的例子解析- (void)viewWillAppear:(BOOL)animated{ // 设置scrollView
2017-03-13 22:22:18 223
原创 分数化小数
输入正整数a,b,c,输出a/b的小数形式,精确到小数点后c位。a,b≤10⁶, c≤100。输入包含多组数据,结束标记为 a=b=c=0。样例输入: 1 6 4 0 0 0 样例输出: Case 1: 0.1667#include <stdio.h>int main(void){ int a, b, c, tmp; int arr[100] = {0}; fo
2017-02-23 23:06:33 321
原创 iOS设置UIButton的titleLabel和imageView需要注意的一些小问题
- (void)viewDidLoad { [super viewDidLoad]; UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(20, 20, 100, 100)]; // 错误设置方法,这样设置,hidden属性始终为Yes button.titleLabel.text = @"6666
2017-02-23 10:51:12 606
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人