Search results for

Visual Studio Maui IOS

105,644 results found

Post

Replies

Boosts

Views

Activity

Question regarding apple's review for one application
Hello All, I have one concern regarding app review process for one application explained below :- Scenario:One of my client wants to develop an iOS App which will facilitate the users to earn virtual credits points through activities such as inbound & outbound calls via app. These credit points can be en-cashed by the user & transferred to its linked bank account.Basically the app will provide users a means of earning from home by participating in various activities available.Query: Does Apple support such feature of taking withdrawal of virtual credit points in user's linked bank account? The target audience of the app will be from USA.Regards,Prathamesh
0
0
190
Jun ’15
Reply to Battery Use Worse
Yes and this is also not the first beta. We developer know this already from former iOS betas. After 1-2 betas the battery drain and performance is again like it should be.But nearly all of us use the devices also private. The battery of the watch was much better than older phones. Now it is so worse that you can use the watch only for development and put it then on the charger. And I am also a little bit worried if this is good for the battery also when it needs so much energy in such a short time. Maybe someone can give us some information why the watch needs now so much battery power even without using native apps.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can I AirDrop from one app to another?
I have set the UTI's for document types that my receiver app supports to include PNG files (public.png). When my receiver app is running, and my transmitter app is told to AirDrop a PNG to the receiver device, it appears as though iOS ignores my receiver app and opens Photos regardless; my receiver app should get the openURL: method called at the AppDelegate, but never does. In addition, the Open In... dialog never appears - the PNG file goes straight to Photos.If I specify a custom UTI, then my transmitter will only be able to broadcast to the receiver, which also has to know the custom UTI I've specified. Plus, I would have to change the file extension of the file the transmitter is sending to map the custom UTI to the file extension. This defeats the purpose of being able to transmit a PNG file as a PNG file.I can also transmit the file as raw data, which also defeats the purpose (and similarly requires a custom UTI).What I'm looking to discover is whether this behavior - iOS taking contr
Jun ’15
iOS 9 Common Siri Problems
First, Siri is having problem with some commands. Sometimes it responds but not following the command and sometimes it crashes.Take a look.https://pbs.twimg.com/media/CHIW2kTVAAAhW2J.pngSecond, Siri button on Assistive Touch is disabled while on the home screen even Siri is enabled, Take a look. https://pbs.twimg.com/media/CHIWjpUUgAA1apm.jpgThird, As I said earlier Siri button on Assistive Touch is disabled but this time while using Siri. Take a look.https://pbs.twimg.com/media/CHIXD53UwAAi55E.png
0
0
892
Jun ’15
UIKeyboardTypeDecimalpad
When use UIKeybaordTypeDecimalPad in iOS8 or above will get minor problem for the keybord, the point position is not in the central of the key. Detailed question description please refer http://stackoverflow.com/questions/26965001/xcode-6-1-ios-8-keyboard-decimal-pad-is-not-properly
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
665
Jun ’15
Reply to How does a view controller call functionality of a view (how is the link made?)
A UIViewController doesn't always need to have a view - initially, it starts without one, then the first time you try and query the view it's created lazily by the loadView method. That method sets the UIViewController's view property. After this, the viewDidLoad method is called.If you don't want to trigger lazy-creation of the view, check UIViewController's isViewLoaded property before trying to talk to the view.In an MVC sense, the controller lives beyond the view and maintains its state. For example, somebody may push a new view on to the navigation stack and the old view might be removed from memory. The UIViewController sticks around, and the next time anybody needs the view it will recreate it.That's at least how it used to happen on iOS. Nowadays, UIView objects themselves stick around and maintain their own state, and the thing that gets purged from memory is the internal screen buffer, so once your UIViewController loads its view that view should never be unloaded.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to iOS 9 Error 14
I am also experiencing the same problem, when I attempt the restore to iOS 9 I get to around 20% on the iphone screen then the error message pops. Tried restarting, different USB ports, redownloading the restore package.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to iOS 9b1: Podcast app crashes on startup
Hi,seeing the same thing here. Also tried to delete all podcasts by removing them from the sync in iTunes. I haven't tried to reinnstalling, but attached is the crash-log.Incident Identifier: B5F20F2E-F1DF-469D-B710-8DEE3DC9104BCrashReporter Key: fb29f236715284e01c3ca12533f80c13bbf8eb99Hardware Model: iPhone7,2Process: Podcasts [425]Path: /Applications/Podcasts.app/PodcastsIdentifier: com.apple.podcastsVersion: 967.2 (2.3)Code Type: ARM-64 (Native)Parent Process: launchd [1]Date/Time: 2015-06-10 13:18:56.56 +0200Launch Time: 2015-06-10 13:18:55.55 +0200OS Version: iOS 9.0 (13A4254v)Report Version: 105Exception Type: EXC_CRASH (SIGABRT)Exception Codes: 0x0000000000000000, 0x0000000000000000Exception Note: EXC_CORPSE_NOTIFYTriggered by Thread: 7Filtered syslog:None foundLast Exception Backtrace:0 CoreFoundation 0x182f93f44 0x182e6c000 + 12122281 libobjc.A.dylib 0x197faff2c 0x197fa8000 + 325562 CoreFoundation 0x182f93e8c 0x182e6c000 + 12120443 Foundation 0x183e10f0c 0x183e04000 + 530044 Podcasts 0x10017
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Segue issue with iOS 9
I installed iOS 9 beta on my iPad, and from the app store installed the current version of my app (that works just fine with iOS8). But there is a problem on iOS9.I have a container view, and inside that have a tab bar controller. One of the tabs is a table view. Clicking on a cell segues to a details page. But in iOS9 the back button / ability to navigate from the details view back to the tableview is no longer visible. In fact, none of the bottom tabs are visible either, it is like it presented it modally and took control of the screen when it should be inside a container. Anyone else experience this?
38
0
16k
Jun ’15
How should one manage authentication?
Our parent application handles the user login, however we are wondering how we should transfer this data over to the WatchKit extension. To clarify, we have a REST API which serves as a primary interface to retrieve all the user data, however to access this API we requires to use an access token. The problem is, how should the WatchKit retrieve this token which should be kept secret (which is acquired at user authentication in the parent app. and saved in the Key Chain). I assume that any method using the Bluetooth/wi-fi to transfer data (such as openParentApplication:Reply method) would be unsafe as anyone with a packet tracer could easily see the data.Keychain sharing seem like it would not work as I assume in WatchOS2 the iOS and WatchOS file system are seperate.
3
0
461
Jun ’15