Posts

Post not yet marked as solved
5 Replies
545 Views
I wanted to know the transfer rate (network speed) in my swift application. There is one thread runs in the background to monitor the transfer reate. If the transfer rate is below the certain limit, it will do some process. I haven't seen any iOS API to directly provide the transfer rate. How do we do this in iOS
Posted Last updated
.
Post not yet marked as solved
4 Replies
2.8k Views
I wanted to know the signal strength in dBm in iOS 13 Swift. I went through most of the forum related to getting network signal streanth in iOS but none of them is working correctlyI tried using NetworkExtension but it is returning nil valueNEHotspotHelper.supportedNetworkInterfacesI tried using statusbar, but it is crashinglet app = UIApplication.shared var rssi: Int? guard let statusBar = app.value(forKey: "statusBar") as? UIView, let foregroundView = statusBar.value(forKey: "foregroundView") as? UIView else { return rssi } for view in foregroundView.subviews { if let statusBarDataNetworkItemView = NSClassFromString("UIStatusBarDataNetworkItemView"), view .isKind(of: statusBarDataNetworkItemView) { if let val = view.value(forKey: "wifiStrengthRaw") as? Int { //print("rssi: \(val)") rssi = val break } } } return rssiI tried using CTTelephonyNetworkInfo, but there is no option to get the dbm value.I wanted to know the mobile data usage (singal strength) . Once the mobile data (singal strength) goes down, my application should stop the process.
Posted Last updated
.
Post not yet marked as solved
4 Replies
770 Views
Dear Friends,I am using swift 5 for my application development. I created the UI screens using struct in SwiftUI. I do have few classes inherited NSObject. There is a requirement to invoke / show the UI from the class. Below is the code that depicts my requirement. I tried using ObservableObject but not able to show the UI even though the object value is changed. Kindly do the needful on this.class Firebase: NSObject { //Invoke Video Call View from here.}struct VideoCallView: View { }
Posted Last updated
.
Post not yet marked as solved
0 Replies
390 Views
TeamI do have three different iOS application, For example app1, app2 and the main app. All these three iOS applications are three different iPa files. I first instlled the main app through OTA enterprise distribution, Once this application is launched, based on users selection, can i download and install either app1 or app2 through OTA enterprise distribution as separte app in iPhone?
Posted Last updated
.
Post not yet marked as solved
0 Replies
1k Views
Hi,We have enterprise certificate and created a iPA using this certificate. We uploaded images, manifest.plist, iPA and html file in our cloud server. In iPhone, the html file is opened in safari app. But we got the error like "Cannot connect to <server>". We used self-signed certificate in server and the same certificate is installed in iPhone device as well.Kindly do the needful to resolve this issue.ThanksSudha
Posted Last updated
.