摘要:
CALayer *layer = [CALayer layer]; layer.delegate = self; layer.bounds = CGRectMake(0, 0, 100, 100); layer.position = CGPointMake(100, 100); layer... 阅读全文
摘要:
CGRect frame = self.myview.frame; frame.origin.y += 200; [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:1.0]; self.myvie... 阅读全文
摘要:
NSString *home = NSHomeDirectory(); NSString *docPath = [home stringByAppendingPathComponent:@"Documents"]; NSString *filePath = [docPath stringByA... 阅读全文