热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

获取指向另一个对象的成员的指针或引用-Gettingapointerorreferencetoamemberofanotherobject

Hihaveannewbieissuewithobjective-c,cocoa&iPhone.IvedeclaredmapViewinmyapplicatio

Hi have an newbie issue with objective-c, cocoa & iPhone. I've declared mapView in my application delegates applicationDidFinishLaunching:application: which is instance/pointer of MKMapView class. mapView is a member of my application delegate.

大家好,我是objective-c, cocoa & iPhone的新手。我在应用程序委托applicationdidfinishlaunch:application中声明了mapView:application:它是MKMapView类的实例/指针。mapView是我的应用程序委托的成员。

In my view controller in viewDidLoad: I get instance of my application delegate with the following:

在viewDidLoad的视图控制器中:我获得应用程序委托的实例,如下所示:

appDelegate = [[UIApplication sharedApplication] delegate];

My view controller also has got MKMapView *mapView as a member. In viewDidLoad: I try to set it this way:

我的视图控制器也有MKMapView *mapView作为成员。在viewDidLoad:我试图这样设置:

mapView = [appDelegate mapView]; 

but it seems that I'm not able to get pointer or "reference" to the actual mapView because when I try to [mapView setRegion:region animated:YES]; it does not work. How ever [[appDelegate mapView] setRegion:region animated:YES]; does work.

但似乎我无法获得指向实际mapView的指针或"reference"因为当我尝试[mapView setRegion:region animated:YES];它不工作。如何([appDelegate mapView] setRegion:区域动画:是的);做的工作。

So the question is how do I get a pointer to appDelegates mapView from my view controller?

问题是如何从我的视图控制器中获得指向appdelegate mapView的指针?

2 个解决方案

#1


1  

It sounds like you're caching your app delegate's mapView member. However, it's possible that at the time you perform this cache, it's not yet instantiated (setting a breakpoint at this location will reveal that to you).

听起来你在缓存应用委托的mapView成员。但是,在执行此缓存时,它可能还没有实例化(在此位置设置断点将向您揭示这一点)。

The answer to your question is: [appDelegate mapView] returns a pointer to the appView member. However, if that member is nil, that's what you'll get back.

您的问题的答案是:[appDelegate mapView]返回一个指向appView成员的指针。但是,如果这个元素是nil,你就会得到这个。

#2


-1  

You're not retaining the appDelegate. If you created your delegate like this:

不保留appDelegate。如果你像这样创建你的委托:

@property (retain) id appDelegate;

Then you have to actually call set on it to retain it:

然后你需要调用set来保留它

[self setAppDelegate:[[UIAppliation sharedApplication] delegate]];

Better yet, use assign in your declaration:

更好的是,在您的声明中使用assign:

@property (assign) id appDelegate;

Best regards,

最好的问候,


推荐阅读
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍了 GWT 中 PopupPanel 类的 onKeyDownPreview 方法,提供了多个代码示例及应用场景,帮助开发者更好地理解和使用该方法。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 1.如何在运行状态查看源代码?查看函数的源代码,我们通常会使用IDE来完成。比如在PyCharm中,你可以Ctrl+鼠标点击进入函数的源代码。那如果没有IDE呢?当我们想使用一个函 ... [详细]
  • 深入解析Android自定义View面试题
    本文探讨了Android Launcher开发中自定义View的重要性,并通过一道经典的面试题,帮助开发者更好地理解自定义View的实现细节。文章不仅涵盖了基础知识,还提供了实际操作建议。 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 本文介绍了在使用Visual Studio 2015进行项目开发时,遇到类向导弹出“异常来自 HRESULT:0x8CE0000B”错误的解决方案。通过具体步骤和实践经验,帮助开发者快速排查并解决问题。 ... [详细]
  • 深入理解 SQL 视图、存储过程与事务
    本文详细介绍了SQL中的视图、存储过程和事务的概念及应用。视图为用户提供了一种灵活的数据查询方式,存储过程则封装了复杂的SQL逻辑,而事务确保了数据库操作的完整性和一致性。 ... [详细]
  • c# – UWP:BrightnessOverride StartOverride逻辑 ... [详细]
  • 本文详细介绍了如何使用 Yii2 的 GridView 组件在列表页面实现数据的直接编辑功能。通过具体的代码示例和步骤,帮助开发者快速掌握这一实用技巧。 ... [详细]
  • Android 渐变圆环加载控件实现
    本文介绍了如何在 Android 中创建一个自定义的渐变圆环加载控件,该控件已在多个知名应用中使用。我们将详细探讨其工作原理和实现方法。 ... [详细]
  • Android LED 数字字体的应用与实现
    本文介绍了一种适用于 Android 应用的 LED 数字字体(digital font),并详细描述了其在 UI 设计中的应用场景及其实现方法。这种字体常用于视频、广告倒计时等场景,能够增强视觉效果。 ... [详细]
author-avatar
贺bujak_491
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有