小编Jor*_*per的帖子

获取系统卷iOS

我的情况很简单:我需要发出警告信号,并希望确保用户会听到它,所以我想查看系统音量.

如何找出当前系统的容量?

audio volume objective-c ios swift

42
推荐指数
6
解决办法
3万
查看次数

模拟器在AQMEIOManager上崩溃

尝试播放音频时模拟器崩溃.

13:22:14.211 App [2965:5603]  <0xb03e7000> Error '!obj' trying to fetch default input device's sample rate
13:22:14.211 App [2965:5603]  <0xb03e7000> Error getting audio input device sample rate: '!obj'
13:22:14.213 App [2965:5603]  <0xb03e7000> AQMEIOManager::FindIOUnit: error '!dev'
Run Code Online (Sandbox Code Playgroud)

simulator ios mpmediaplayercontroller

10
推荐指数
1
解决办法
4041
查看次数

如何在iOS MKMapView上获得最大缩放级别

我的一个应用程序在非常高(最大)的zoomLevel(高细节图)上使用MKMapView随着iOS7的推出,我几乎不能像以前那样接近地图.

我正在使用mapView setRegion:方法.

我一直在运行测试,结果如下:

跨全屏纵向模式mapview跨iOS版本:

 iOS 5.1:   140 meters
 iOS 6.1:    70 meters
 iOS 7.0.3: 281 meters
 iOS 7.0.3: 160 meters (if pinched manually!!)
Run Code Online (Sandbox Code Playgroud)

有没有办法在iOS 7.0.3上以编程方式实现160米(最大缩放级别)

(我知道水平跨度取决于纬度,所以米的数量只是比例的指示)

zoom region mapkit mkmapview ios7

7
推荐指数
1
解决办法
5286
查看次数

在模拟器中安装应用程序时,Simctl安装无法在.app中找到Bundle Identifier

当我尝试在启动的模拟器中安装我的应用程序时,如下所示:

xcrun simctl install booted /build/iphone/build/Debug-iphonesimulator/foo.app
Run Code Online (Sandbox Code Playgroud)

我得到以下结果:

An error was encountered processing the command (code=22):
Failed to install the requested application
The bundle identifier of the application could not be determined.
Ensure that the application's Info.plist contains a value for CFBundleIdentifier.
Run Code Online (Sandbox Code Playgroud)

当我检查.app中的Info.plist时,CFBundleIdentiefier就在那里并且正确.

<key>CFBundleIdentifier</key>
    <string>com.bar.foo</string>
Run Code Online (Sandbox Code Playgroud)

我在Yosemite上使用xcode 6.3.2

模拟器在安装时启动.

我究竟做错了什么?

xcode cfbundleidentifier ios-simulator xcrun simctl

7
推荐指数
1
解决办法
2734
查看次数

如何命名范围为 0.0 到 1.0 的值?

我经常使用 0.0 和 1.0 之间的值来保持进度、透明度或其他可以从nonefull 的东西。如果你愿意的话,一个百分比。

我不想称它为百分比,因为它没有表示为 0 到 100 之间的值。

为了给我的变量一个清晰的名字,我还是想描述一下这种值。

什么是合适的名字,多年后我仍然没有找到。

math naming

5
推荐指数
1
解决办法
1015
查看次数