Default volume/sound of the device - ios

I am going to use code to get the default volume/sound of the device which is set using the volume up or down buttons form the device, Below is the code which I am going to access the sound,
To resolve this error I have done research and found that to access this code we need to use CoreAudio Framework which allows to use the above code,
#import <CoreAudio/CoreAudio.h>
As suggested in a link Here But while goint to try with "<CoreAudio/CoreAudio.h>" it is giving below error for ios 7.0 +.
I have a need to get default system sound and this code is not giving me right to get desired result, is there any alternate way to find the current volume/sound of the device?
Any help is highly appreciated in advance.

You would want to include AudioToolbox/AudioToolbox.h.
You also need to link the framework in your build settings.
Also - The sample link you provided is for OSX while your question states that you are using iOS7. The OSX and iOS coreaudio api is not exactly the same. Some of your code above is for OSX.

Related

Google Map don't load in iOS

I’m using GoogleMaps pod in my iOS application and it was working fine, but in my last build, apple reject my application. And the reason behind that is, the map was unable to load at the time of review on iPad running iOS 12.2 on Wi-Fi.
I did try to reproduce that bug on my device but I couldn’t.
Application do ask for location permission
Google Place API key also seems ok.
Is there any way to identify what the actual issue is and how I am supposed to solve this one?
Finally, I've solved that issue and for that, I've done some of the changes in my project.
1 - I've patched the latest Google Plist file in the project (I wasn't sure whether the old one was latest or not)
2 - I was using multi language in my project so before setting the delegate of google map, I've set the language for my project.
3 - instead of set the google map from Storyboard, I've set the google map programmatically in my view controller after setting language.
After surfing for so long to solve this issue, I came to know that this issue occurs when your App supports multi language. These some steps did work for me.

Present a DataMatrix in iOS

I want to present a DataMatrix from a given String in an iOS App (NOT a barcode), but can not found any working SDK, guide or even hint to a solution. The only thing I found was a way to READ it, but it looks like the AVFoundation can't be used to SHOW it.
Would be very thankful for every hint to this topic.
More infos about DataMatrices:
https://en.wikipedia.org/wiki/Data_Matrix

iOS/Swift: Making the source code of an app visible?

Is it possible/do you know any possibility to visualize the source code of an app? Because I'm working on something and I have got an app that does exactly what I want mine to do, just in a completely different way. Basically, every app on the AppStore has to be written in Xcode, right? So how do I visualize the code?
Thanks in advance!
The developer needs to share the code with you if you want to get the full code.
You can't extract the code from the .ipa itself (which is essentially the app)
Moreover, not every iOS app is written in Xcode - you have other SDK to write Swift and Objective-C with and more apps that you can write cross platform app with that eventually produced the .ipa file.

Socketscan softscan sample using Swift

Seemingly unavailable to SocketMobile's developer portal, does anyone have a minimal example of how to implement the softscan function (use the iPhone Camera) using Swift?
I've an iOS app that works great with the physical scanner, but I'd like to extend it to use the camera as a backup for a broken scanner etc.
[first ever post at StackOverflow, if I've got something wrong, please let me know and I'll attempt to correct it in future. Many thanks.]
Thanks Enrico.
SocketMobile have updated their git repo and it now contains a Swift version of their 'Single Entry' app that supports SoftScan. Using this I was able to work out how to call their ObjC library to implement to function correctly.

Complete Noob Aviary SDK Implentation header import

So I've got a basic app WireFrame going and the Nav works fine.
The app is for users to create artwork and upload for output.
I want to use the Aviary Photo Editor (with a few tweaks) to fulfill most of the artwork creation.
The major issue I'm having at the moment is understanding where to import the header to allow my app to see the SDK. Instruction below:
See Point 6
My third scene is Artworkviewcontroller and I was trying to put it into the .h and then use:
See basic usage
in the .m file.
BUT when I try to run the app in the simulator nothing happens! Aviary could really do with a forum!
Any help would be greatly appreciated, I have have all the bits I just need to know how to bolt them all together!!
Check out the demo application that is contained in the SDK distribution. The AFSDKDemoViewController.m file contains a full implementation of the AviarySDK. You can download the distribution here: developers.aviary.com.

Resources