- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我目前正在开发一个 Xamarin iOS 应用程序,它使用自动布局将元素定位在我的 View 中。我想根据通过自动布局定位的其他 subview 绘制元素并定位它们。
我的问题是,draw
方法在创建 subview 布局之前以及它们在我的 View 中定位之前被调用,所以我无法传递相对位置作为起点到要绘制的 View 。我只能通过在 ViewDidLayoutSubviews
而不是 ViewDidLoad
方法中添加绘制的 subview 来做到这一点。我认为这不是一个非常优雅的解决方案,我想知道是否有任何其他方法可以定位必须通过相对起点绘制的元素?
下面是一些示例代码:
显示元素的 ViewController:
public class QuestionViewController : BaseController {
private UILabel _infoLabel;
private UIButton _button1;
public override void ViewDidLoad() {
UIView containerView = View;
containerView.BackgroundColor = UIColor.White;
var constraints = new List<NSLayoutConstraint>();
_infoLabel = new UILabel()
{
IsAccessibilityElement = true,
TranslatesAutoresizingMaskIntoConstraints = false,
Text = "My Info Label",
LineBreakMode = UILineBreakMode.WordWrap,
Lines = 2,
Font = UICore.TextFont,
TextColor = UICore.TextColor
};
containerView.AddSubview(_infoLabel);
constraints.Add(NSLayoutConstraint.Create(_infoLabel, NSLayoutAttribute.Top, NSLayoutRelation.Equal, containerView, NSLayoutAttribute.Bottom, 1f, 10f));
constraints.Add(NSLayoutConstraint.Create(_infoLabel, NSLayoutAttribute.Leading, NSLayoutRelation.Equal, containerView, NSLayoutAttribute.Leading, 1f, 10f));
constraints.Add(NSLayoutConstraint.Create(_infoLabel, NSLayoutAttribute.Trailing, NSLayoutRelation.Equal, containerView, NSLayoutAttribute.Trailing, 1f, -10f));
containerView.AddConstraints(constraints.ToArray());
base.ViewDidLoad();
}
public override void ViewDidLayoutSubviews() {
var containerView = View;
var myCircle = new CircleView(new RectangleF((float)_infoLabel.Frame.X, (float)_infoLabel.Frame.Bottom, 60, 60), UIColor.Red, "TEST");
containerView.AddSubview(myCircle);
base.ViewDidLayoutSubviews();
}
}
画圆的CircleView:
public class CircleView : UIView {
private UIColor _color;
private string _label;
public CircleView()
{
Initialize();
}
public CircleView(RectangleF bounds, UIColor color, string label) : base(bounds) {
_label = label;
_color = color;
Initialize();
}
void Initialize()
{
BackgroundColor = UIColor.White;
}
public override void Draw(CGRect rect) {
var context = UIGraphics.GetCurrentContext();
context.SetFillColor(_color.CGColor);
context.FillEllipseInRect(rect);
}
}
最佳答案
我终于找到了适合我的答案。
在 ViewDidLoad
方法中,我创建了另一个 subview ,将 circleView 添加到该 subview 并将 subview 添加到我的 containerView。 circleView 获取起点 0,0 并且我为 subview 添加约束以将其定位在 containerView 中:
var dummyView = new UIView();
dummyView.AddSubview(new CircleView(new RectangleF(0f, 0f, 60, 60), UIColor.Red, "TEST");)
containerView.AddSubview(dummyView);
constraints.Add(NSLayoutConstraint.Create(dummyView, NSLayoutAttribute.Top, NSLayoutRelation.Equal, _infoLabel, NSLayoutAttribute.Bottom, 1f, 10f));
constraints.Add(NSLayoutConstraint.Create(dummyView, NSLayoutAttribute.Leading, NSLayoutRelation.Equal, containerView, NSLayoutAttribute.Leading, 1f, 10f));
关于ios - 使用 Xamarin 在 iOS 中使用自动布局绘制元素的相对定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29388365/
我们有一个应用程序,我们可以在其中设计标签,然后根据设计创建图像并将其发送到打印机。图像在通过 TCP/IP 发送之前被制成字节流。 简而言之,我们有一个旋转设置,可以自动计算标签上不同元素的位置。而
我们在 IIS7 中有一个 MVC3 应用程序:http://mydomain.com/myapplication/ javascript 中的相对 URL 是什么: http://mydomain.
我的例子:http://jsfiddle.net/kwnk8qup/ 我的代码: container(父 div
如何将元素放置在右侧,并保持后面元素的持久位置? 我想在没有 Efficiently ... 的情况下将 text-align: right 对齐到右侧,并保留 t2 和 t3 元素之间的空间。 当我
假设我有一个包含以下文件的模块包。一个空文件 C:\codes\package\__init__.py 和一些重要文件: 一个位于C:\codes\package\first.py def f():
我正在尝试使用以下代码在屏幕上相对移动光标: input.type = INPUT_MOUSE; ZeroMemory(&input, sizeof(input)); input.mi.mouseDa
我排列了 3 个 div;中心 div 有许多 position:absolute 图像(它们重叠——一次显示一个图像;其余的是 display:none;对于 jQuery 交叉淡入淡出,这不是密切
我在 SQL 2000 数据库中有以下简化的表结构: ID AppName Key Value EffectiveDate -- ------- ----- ------- ---
给定以下配置: server { listen 80; server_name site.com; location /proxy { proxy_pa
我正在使用这些方法动态加载图像和资源目录,但它们并不适用于所有情况 new Uri(@"pack://application:,,/Images/lession_tab.png"); 此方法不适用于图
在插入/更新许多行时,我知道SQLite的“问题”,但事实并非如此。 我正在更新包含约250条记录的表中的ONE一行(由PK索引)中的ONE字段。查询通常需要200毫秒左右的时间。听起来很少,但很大。
如何向左或向右滑动线性布局。在该线性布局中,默认情况下我有一个不可见的删除按钮,还有一些其他小部件,它们都是可见状态,当向左滑动线性布局时,我需要使其可见的删除按钮,当向右滑动时,我需要隐藏该删除按钮
Imagen 我有一个 2D 点 (x,y) 列表,它们在我的简单游戏中描述了 2D 地形。 然后我让 glVertex() 在 GL_POINTS 模式下绘制所有这些点。 然后我有一个球,它也有它的
我正在使用 Google CloudSQL 并具有以下简单代码: ;dbname=', 'root', '' ); $db->setAttribute ( PDO::ATTR_ERRMODE, PDO
我知道有几个类似的问题,但是,其中的示例并没有说明问题,或者我无法从中获利 - 我真可耻。 所以我的问题是在带有 GUI 的简单应用程序中加载图像。例如: 我在 "D:\javaeclipseprog
我对放置在表格单元格内的 div 有疑问。单元格具有固定的高度和 div 相对于 height:100% 定位。 jsfiddle example td { height:80px;
我正在抓取一些数据。 我需要的数据点之一是日期,但包含此数据的表格单元格仅包括月份和日期。幸运的是,年份被用作对表格进行分类的标题元素。 出于某种原因,year = table.find_elemen
我想要一个 DIV,最大 90% 高度或 90% 宽度。我只想将图片作为背景放入 DIV 中,并且完整的 svg-image 应该是可见的。在移动设备和桌面设备上。 CSS: .camera {
我是网页设计新手,想了解 CSS 中定位的概念。我对相对和绝对定位元素有一些了解。在下面的 fiddle 中,我有一个 作为 的父级.当我做 p position:absolute ,边框崩溃不像我
我在调整图像高度相对于浏览器窗口的大小时遇到了一些严重的困难——宽度可以很好地调整大小,但高度保持不变。我尝试过 height: 100% 和 height: auto,以及 height: 10
我是一名优秀的程序员,十分优秀!