菜鸟教程小白 发表于 2022-12-12 11:00:23

ios - 以编程方式设置在 View Controller 上添加的对象的标记


                                            <p><p>好的,这是一个完全不在意的问题。我有一个添加了 <code>UITapGestureRecognizer</code> 的 ViewController 。当用户点击 View 时,自定义 UIView 会添加到该点击位置。这是 <code>UITapGestureRecogniser</code> 的代码:</p>

<pre><code> -(IBAction)singleTap_Detected:(UITapGestureRecognizer *)recognizer
{
   CGPoint tapPoint = ;
   customView=;

   ;

   ;
   customView.layer.position=CGPointMake(tapPoint.x,tapPoint.y);

   ];

   NSManagedObjectContext *context = ;

   // if there isn&#39;t an Point object, create and configure one
   self.point = [NSEntityDescription insertNewObjectForEntityForName:@&#34;PointDetail&#34;
                                                                inManagedObjectContext:context];
   ;

   NSString *pointPosition=NSStringFromCGPoint(tapPoint);

   self.point.position=pointPosition;

   NSError *error = nil;
   if (!)
   {
         NSLog(@&#34;Unresolved error %@, %@&#34;, error, );
         abort();
   }
}
</code></pre>

<p>我还将点击位置保存在 <code>Core Data</code> 中。现在的问题是我无法为 ViewController 上添加的每个自定义 <code>UIView</code> 设置标签。如图所示,每个自定义 <code>UIView</code> 都有一个按钮。单击该 <code>Button</code> 时, View 正在导航到另一个 View 。现在我需要为每个 View 设置标签。这怎么可能 ?我不知道我是否能够清除我的概念但我会发自内心的感谢。所以,请给我一个解决方案。我是 iPhone 新手。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要将<em>下一个标签值</em>存储为该类的实例变量:</p>

<pre><code>@interface YourClass ()
{
    NSInteger _nextTagValue;
}
</code></pre>

<p>确保它在 <code>viewDidLoad</code> 中初始化为您的起始值(或其他等价物):</p>

<pre><code>- (void)viewDidLoad
{
    _nextTagValue = 100;
    ...
}
</code></pre>

<p>并像这样使用它:</p>

<pre><code>-(IBAction)singleTap_Detected:(UITapGestureRecognizer *)recognizer
{
    CGPoint tapPoint = ;
    customView=;
    customView.tag = _nextTagValue++;

    ...
}
</code></pre>

<p>但是我不清楚这个标签值 <em> 意味着什么</em> 以及你想如何使用它和跟踪它。如果您需要这方面的帮助,请添加详细信息。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 以编程方式设置在 ViewController 上添加的对象的标记,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25132530/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25132530/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 以编程方式设置在 View Controller 上添加的对象的标记