首页 \ 问答 \ 是否有可能在实际设备而不是模拟器上测试iPhone应用程序?(Is it possible to Test iPhone Application on Actual Device rather than Simulator?)

是否有可能在实际设备而不是模拟器上测试iPhone应用程序?(Is it possible to Test iPhone Application on Actual Device rather than Simulator?)

我想测试自己的应用程序到我的真实iPhone设备,而不是模拟器。

那么,有没有这样的机会?

我有一个苹果开发者帐户..但不知道的程序,请帮助我,如果你有任何解决方案..

提前致谢...


I wants to test my own application to my actual iPhone Device rather then simulator.

So, is there any chance to do so with ?

I have an apple developer account.. But don't know the procedure, Please help me if u have any solutions..

Thanks in advance...


原文:https://stackoverflow.com/questions/1558585
更新时间:2023-09-26 20:09

最满意答案

也许我可以帮助一点点字母汤。 VBA是您列表中最古老的技术。 它主要用于基于MS Project对象模型上的旧视觉基本操作在MS Project中编写(自动化)事物。 它通常在特定的MS Project文件中工作。 VSTO是微软推出的现代版VBA,可以利用.NET。 它仍然以文件为中心,但现在您可以使用现代的面向对象语言(如C#或VB.NET)来编写控件。 第三种方法是编写一个可以与任何MS Project文件一起使用的独立.NET应用程序。 一个例子是COM-Addin方法。 COM Addin是您单独编译和打包的C#或VB.NET应用程序。 然后在机器上注册Add In,以便MS Project知道它并在需要时调用它。

VSTO和COM Addins都是用.NET编写的,而MS Project只能用COM编写。 因此,当他们与MS Project交谈时,它们都依赖于Microsoft COM-Interop库。 这些库称为“主互操作程序集”,它们支持COM调用和.NET调用之间的转换。

Andrew Whitechapel有一本关于所有这些的综合性书籍,名为Microsoft®.NETDevelopment for Microsoft Office 。 它不再直接在亚马逊上销售,但你仍然可以通过其他卖家找到它。 我在安德鲁的书中遗漏了一些其他相关的技巧。 另一位专家是Rod Gill。 他写了一本名为VBA Programming for MS Project '98到2010的书,附有VSTO简介 。 它比安德鲁的书更以VBA为中心,但你可能会觉得它很有帮助。 我建议您使用谷歌安德鲁和罗德以及前微软的Misha Schneerson。 Andrew和Misha现在已经转向其他技术了,但是你会发现他们为你提供了很好的烹饪书。

希望这可以帮助。


Maybe I can help a little bit with the soup of letters. VBA is the oldest technology in your list. It is primarily used for scripting (automating) things in MS Project based on old visual basic operations on the MS Project object model. It typically works inside a specific MS Project file. VSTO is the modern version of VBA that Microsoft introduced to take advantage of .NET. It is still file-centric, but now you can use a modern object-oriented language like C# or VB.NET to write your control. A third approach is to write a separate .NET application that can work with any MS Project file. An example of this is the COM-Addin approach. A COM Addin is C# or VB.NET application that you compile and package separately. Then you register the Add In on the machine so that MS Project knows about it and calls it when needed.

Both VSTO and COM Addins are written in .NET, whereas MS Project only speaks COM. Thus both rely on the Microsoft COM-Interop libraries when they talk to MS Project. These libraries are called 'Primary Interop Assemblies' and they enable the translation between COM calls and .NET calls.

There's a comprehensive book on all of this by Andrew Whitechapel called Microsoft® .NET Development for Microsoft Office. It's no longer sold directly on Amazon, but you can still find it through other sellers. I've left out a few other related techniques that you can find in Andrew's book. Another expert is Rod Gill. He's written a book called VBA Programming for MS Project '98 through 2010 with an Introduction to VSTO. It's more VBA-centric than Andrew's book, but you may find it helpful. I'd recommend that you Google Andrew and Rod and also Misha Schneerson, formerly at Microsoft. Both Andrew and Misha have moved on to other technologies now, but you'll find that they give you good cookbooks for doing this sort of thing.

Hope this helps.

相关问答

更多
  • 我解决了这个问题。 当我不“以管理员身份运行”时,应用程序以降低的权限运行。 我的错误印象是,以管理员身份登录时运行应用程序会使应用程序以完全权限运行。 至于为什么在Windows 8中需要“以管理员身份运行”而不是之前,我猜测Win 8中的降级权限模式比以前的版本更具限制性。 I figured out the problem. When I don't "Run as Admin", the application is running with reduced privilege. I was und ...
  • 好的,经过多次调查,我找到了问题的答案。 基本上,从我的VSTO Addin公开的COM类需要继承“StandardOleMarshalObject”。 原因是因为我的Addin中的COM方法正在访问辅助线程(调用应用程序的线程)上的项目对象模型。 这是一个很大的不。 从该类派生派生所有调用该辅助线程到主UI线程,从而解决问题。 Ok, after much investigation, I found the answer to the problem. Basically the COM class e ...
  • 也许我可以帮助一点点字母汤。 VBA是您列表中最古老的技术。 它主要用于基于MS Project对象模型上的旧视觉基本操作在MS Project中编写(自动化)事物。 它通常在特定的MS Project文件中工作。 VSTO是微软推出的现代版VBA,可以利用.NET。 它仍然以文件为中心,但现在您可以使用现代的面向对象语言(如C#或VB.NET)来编写控件。 第三种方法是编写一个可以与任何MS Project文件一起使用的独立.NET应用程序。 一个例子是COM-Addin方法。 COM Addin是您单独 ...
  • Project Server公开的REST接口可能是一个有用的开始:参考文档可以在这里找到: https : //msdn.microsoft.com/en-us/library/office/jj669820.aspx 。 The REST interface exposed by Project Server might be a useful place to start: Reference documentation can be found here: https://msdn.microsof ...
  • DataGridView的设计并不是为了模仿Excel的电子表格功能,我认为没有任何内置控件可以做到。 您可以扩展它并添加您需要的功能,但老实说,这是很多工作。 实际上,我们发现购买第三方组件可以更便宜,而第三方组件可以满足我们的需要,而不是尝试构建自己的组件。 这里讨论了几个不同的组件: https : //stackoverflow.com/questions/144338/what-is-the-best-third-party-winforms-grid-for-net DataGridView i ...
  • 是的,我能做到。 我应该将CSOM用于现代版本的MS Projct(2013)。 Yes,i can do it. I should use CSOM for modern versions of MS Projct(2013).
  • 事实证明,内部工具正在使用默认版本的项目在后台打开项目文件。 由于用户同时安装了2007和2013,并且2013是默认版本,因此在运行某个功能时,2007年创建的项目文件在2013年打开,该文件将2013标志添加到文件中。 It turns out that an internal tool was opening the project file in the background with the default version of project. Since the user has both 2 ...
  • AX 2012与此处所述的 Project Server 2010集成。 它没有与您自己发现的 Project Server 2013集成。 AX 2012 integrates with Project server 2010 as described here. It does not integrate with Project server 2013 as you have found out yourself.
  • 您必须删除Office 2013的所有测试版。在此之后,我可以毫无问题地安装Office 2013和Visio 2013,原因可能是Prooffing Tools。 我遇到过同样的问题。 以下是删除Prooffing工具的小指南(不会出现在appwiz.cpl =系统应用程序中)。 转到%windir%\ installer 右键单击标题栏并选择主题 转到每个msi(主题值),你会发现一些安装的prooffing工具预览。 (或预览中的其他内容) 右键单击它并选择“卸载” 之后,您应该能够安装Office ...
  • 不,它不会。 核心代码运行正常的可能性很小,但是从菜单栏切换到功能区菜单,2003年插件中显示的任何菜单选项都不会在2013年作为功能区上的按钮显示,所以我可以肯定地说这部分不起作用。 No, it won't. There is a slim chance that the core code may run ok, but with the switch from the menu bar to the ribbon menu, any menu options presented by the 200 ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)