Tag: 边界

UIImageView边界,框架

我知道这里有很多类似的问题,我检查了这个着名的问题,然后把握了界限和框架之间的区别。 现在我有一些与他们有关的问题。 我和他们一起玩,但没有像我预期的那样performance出来。 我不明白的是: 为什么Y的帧起始位置是44.000000,即使我在左上angular设置了UIImageView? 因为边界应该是“UIView的边界是矩形,表示为相对于它自己的坐标系(0,0)的位置(x,y)和大小(宽度,高度)。 ( cocoa:框架和界限有什么区别? )我认为框架也应该从左边angular落开始。 #import "ViewController.h" @interface ViewController () //@property (weak, nonatomic) IBOutlet UIImageView *image; @property (weak, nonatomic) IBOutlet UIImageView *image2; @end @implementation ViewController – (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //UIImage *imageView = [UIImage imageNamed:@"stanford"]; // self.image.alpha = […]

带有旋转的scrollView中的imageView的边界

我有一个全屏的UIScrollView来显示我的图像,它采用从苹果示例代码从PhotoScroller.app一些代码。 我有点困惑的旋转scrollView和convertPoint的imageView的界限。 任何帮助将不胜感激! PS。 有关更多详细信息,请在边界中心find NSLog调用willRotateToInterfaceOrientation:持续时间: 2012-05-12 11:35:45.666 imageScrollView frame X and Y are 0.000000 and 0.000000 2012-05-12 11:35:45.672 imageScrollView frame Width and Height are 320.000000 and 480.000000 2012-05-12 11:35:45.677 imageScrollView bounds origin X and Y are 0.000000 and 0.000000 2012-05-12 11:35:45.682 imageScrollView bounds Width and Height are 320.000000 and 480.000000 2012-05-12 11:35:45.686 imageView frame […]

我可以添加一个SKSpriteNode边界,类似于UIView?

我感兴趣的是如果SKSpriteNode可以模仿UIView的行为,我可以指定边界和angular半径? self.view.layer.borderColor = [UIColor lightGrayColor].CGColor; self.view.layer.borderWidth = 2;; self.view.layer.cornerRadius = 2; self.view.layer.masksToBounds = YES;

删除UITabbar上边界线

我一直在应用程序中使用UITabbar。 UITabbar顶部有一个上边界线。 请参阅下图: 我谷歌search,并尝试build议的代码,如: [[UITabBar appearance] setShadowImage:[[UIImage alloc] init]]; 也 [[UITabBar appearance] setShadowImage:nil]; self.navigationController.toolbar.clipsToBounds = YES; 但他们都没有工作。 任何解决scheme

为什么iOS坐标系很难理解? 只有我?

我正在学习iOS的UIView! 而且我发现我无法理解边界是如何工作的。 例如, 请运行这个代码…并看到红框的移动。 红色框上升! 而白根视图是静态的! 为什么!? 为什么红框上升! ?? 请让我知道OTL! class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let childView : UIView = UIView(frame: CGRect(x: 50, y: 50, width: 200, height: 200) ) childView.backgroundColor = UIColor.red self.view.addSubview(childView) } override func viewDidAppear(_ animated: Bool) { UIView.animate(withDuration: 8, animations: { // I cannot unnerstand how bounds […]

如何使UIView的渐变边框?

我想要制作一个如下图所示的渐变边框: 但我不知道它是如何做到这一点,即我应该用什么梯度颜色来做到这一点? 如何设置我的视图来显示像图像的边框? 我正在使用下面的代码来获得一个边框: self.view.layer.borderColor = [UIColor orangeColor].CGColor; self.view.layer.borderWidth = 2.0f;