61 reputation
7
bio website
location
age
visits member for 1 year, 5 months
seen Apr 25 at 7:32
stats profile views 32

Mar
22
comment When I want to cache some data in my iPhone app, sqlite or just JSON file?
@Anupdas not so much, but I think NSUserDefaults is not so good for structured data
Mar
22
asked When I want to cache some data in my iPhone app, sqlite or just JSON file?
Mar
4
comment Why is making two corners round slower than make all corners round?
Actually, I use these code in my tableview's cell. So, when I scroll my tableview, I found it's look like lost some frame. So I want to fix it.
Mar
4
asked Why is making two corners round slower than make all corners round?
Mar
3
comment I use a background image in tableview's cell and I use shadowOpacity, but it's so low on scrolling. how to Tuning?
thanks you! another question. I modify a imageview with bottom 2 cornor round code with: UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.photoImageView.bounds byRoundingCorners:UIRectCornerBottomLeft|UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)]; [maskPath addClip]; CAShapeLayer *maskLayer = [CAShapeLayer layer]; maskLayer.path = maskPath.CGPath; self.photoImageView.layer.mask = maskLayer; I found it is slow than make all corner round with code : self.photoImageView.layer.cornerRadius = 10; why?
Mar
3
accepted I use a background image in tableview's cell and I use shadowOpacity, but it's so low on scrolling. how to Tuning?
Mar
3
asked I use a background image in tableview's cell and I use shadowOpacity, but it's so low on scrolling. how to Tuning?
Jan
30
accepted Why I can change cell's frame in viewWillAppear?
Jan
30
accepted I want to make a more than two input texture filter with GPUImage. but I got a black output
Jan
26
answered I want to make a more than two input texture filter with GPUImage. but I got a black output
Jan
25
asked I want to make a more than two input texture filter with GPUImage. but I got a black output
Jan
21
answered Why I can change cell's frame in viewWillAppear?
Jan
21
comment Why I can change cell's frame in viewWillAppear?
@Larme I think change cell's height in init should use heightForRowAtIndexPath. I have fix it.
Jan
21
comment Why I can change cell's frame in viewWillAppear?
@Larme yes,I add [self.tableView reloadData] but no use
Jan
21
asked Why I can change cell's frame in viewWillAppear?
Jan
20
accepted Can one view In scrollview but it will not scroll?
Jan
18
comment Can one view In scrollview but it will not scroll?
@Prateek but the scroll view is the root view in the controller.I do not know how to add it.
Jan
18
asked Can one view In scrollview but it will not scroll?
Jan
4
comment how to make resizable image with @2x file?
yes, you're right, but use @2x file UIEdgeInsetsMake(11, 11, 11, 11) should be UIEdgeInsetsMake(5, 5, 5, 5)
Jan
4
accepted how to make resizable image with @2x file?