how to update my applications iOS7? - updates

I am a iOS developer.I have to update my old applications for iOS7.I developed my old apps in iOS6 and XCode4.Now, I try to execute iOS7 ,but doesn't work iOS7.How to compile and execute my old apps in iOS7.How to use XCode5?Do you know any idea?

When you open the storyboard of your application in XCode 5, this will automatically convert the old storyboard with the new one compatible with iOS 7. Then you have to change the old iOS 6 api with the new iOS 7 api.
All information for translate and optimize your old project (code and inteface) are here:
https://developer.apple.com/library/prerelease/ios/navigation/
Apple Transition Guide

Related

problems moving to API 31 in ionic cordova framework

the problem is the following: I have my project in ionic cordova with API 30 and everything works perfectly, the problem happens when I want to go to API 31, what happens is that when going to API 31 only It works on Android 11 and its previous versions, but not on versions 12, 13 and it cannot be installed on the versions already mentioned
I tried to update ionic and all its dependencies to the latest version, hoping that would solve the problem
Do you have a specific error on some logging or something else to go off of?
I believe you have to switch from java-8 to at least java-11.
You also might have to update cordova-android, or at least read about the breaking changes in the update docs: https://cordova.apache.org/announcements/2022/07/12/cordova-android-release-11.0.0.html

React-360 Oculus Quest won't go into VR Mode

I have to be missing something:
I installed node.js, installed react-360, created the Hello360 app but can't get the page to go into VR Mode in my Oculus Quest via the Oculus Browser. It just looks the same as it does on a PC.
After googling for a while found a note that said it only works with https so I got that working and ... nope no VR.
Under Windows 10 Professional.
React 360 uses the WebVR API. Oculus Browser removed support for WebVR in version 9. This is why it's not entering VR.
The replacement for WebVR is WebXR. You might want to pick up a different library which supports WebXR, like AFrame.
immersiveweb.dev has some links to other frameworks (yes, including React 360, but that link is a 404 :P). Or you could go bare-handed with the WebXR API directly.
It looks like the live React-based project right now is https://github.com/pmndrs/react-xr based on https://github.com/pmndrs/react-three-fiber

Playing online radio using BackgroundAudioPlayer on Windows Phone 8

I want to play songs from a online radio and for that i am using the BackgroundAudioPlayer for windows phone 8. Now i downloaded the sample app provided by MS and modified that a bit primarily to test whether the streaming link is working or not. So, my new AudioTrack object is looked like this one,
new AudioTrack(new Uri("http://live.abcradiobd.fm:8282/;listen.mp3", UriKind.Absolute),
"ABC Radio",
string.Empty,
string.Empty,
null)
This is not working at all. After sometimes it generates TimeOutException but the link is perfectly working in VLC player and other audio player out there.Any solution?
Solved:
Tried Phonesm and it's working perfectly. You can use that for both audio and video streaming. But before building that project make sure that you have downloaded the correct version for MPPF which is v1.2 from here and install as an extension to visual studio.

How to create a new view on iOS project based on phone gap?

I used Phonegap as the basic framework to built my IOS project. In order to write a native function, I wrote a plugin and wanna to used objc to create a new view. However, I failed to create it. What should I do next?
You need to read and understand Cordova plugins to bridge between native code and Phonegap HTML5

How to record audio and save at local system using htlml5?

My basic requirement is let user to record his voice and wish to save that recorded audio at my local system. We do not wish to use flash player as we are planning to run at mobile also, our web application should run at desktop browsers, mobiles as well as at iPad?
I tried running sample suggested by at - http://webaudiodemos.appspot.com/AudioRecorder/index.html
Windows 7 Firefox 26.0 - Not working
Windows 7 Chrome Version 31.0.1650.63 m - Working
iPad Safari - Not working
I need some solution that works fine on any browser at Windows, mobiles and as well as at iPad?
How can record audio and save them at local file system without flash player?
Thanks
If you want to capture audio in browser you need to use navigator.getUserMedia function.
As you can see from your example it uses in initAudio function(main.js file):
if (!navigator.getUserMedia)
navigator.getUserMedia = navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
More info about getUserMedia you can get from article on html5rocks.com. And as you can see getUserMedia works only in FF and Chrome.
What about to save any to local file system. Any browser don't give you permission to write something to filesystem, it's unclassified, but they have it implementation in sandbox by using requestFileSystem. More info about requestFileSystem you can get from html5rocks.com
If you want to create modern HTML5 app - check often sites like html5rocks.com for new articles and read that already published.