ios8

Worklight 6.1 and iOS 8

ぐ巨炮叔叔 提交于 2019-12-11 09:29:37
问题 I have some Apps developed with WL 6.1 and now, I updated my device to iOS 8 and none of the App is working. All of then are stucked in the Splash Screen. I can't update WL because my server is in the "old" version. Any suggestion? 回答1: Update: Please see the following tech note for iOS 8 support: http://www-01.ibm.com/support/docview.wss?uid=swg21684538 The link includes download links for patched versions of Worklight 5.0.6, 6.0, 6.1 and 6.2 as well as a list of fixed issues and other

Cordova/Phonegap: JQuery UI Accordion doesn't scroll anymore on ios8

你。 提交于 2019-12-11 09:19:23
问题 I got an App for iOS written within the cordova framework (html/css/js). To display contents it uses the Accordion from JQuery UI. The Accordion has fixed height so that the contents needs scrolling when it's to large for one page. Til the iOS8 Update everything worked fine, now i can't scroll the contents anymore. Scrolling works when i tap on the header of the accordion but not with then content. Anyone an idea what could cause this? Things i checked - cordova up to date - jQuery up to date

Does HKObserverQuery can receive notification when the application not running(Killed)?

混江龙づ霸主 提交于 2019-12-11 08:34:43
问题 My requirement is to register for any one of the Health data like steps, weight, heart rate, etc., for background delivery using enableBackgroundDeliveryForType: method. And then create a Observer query for the same Health data to check. In this scenario, if my application is killed by the user forcely and did changes to Health data using Health app. By this stage is it possible to get the notification to My application? Is it mandatory to register for any of the background modes, to get

cant dismiss MFMailComposeViewController shown by clicking mail link in UITextVIew (iOS 8 beta bug)

二次信任 提交于 2019-12-11 08:24:53
问题 This turned out to be due to bug in iOS 8 beta. I have reported it via bug number 17318153 I'm setting an email address to a UITextField. The intent is for iOS to see its an email address and, if the user taps it, display an instance of MFMailComposeViewController to send an email (which it does). However, if the user then taps cancel, the MFMailComposeViewController is not being dismissed. I tried setting my viewController as a MFMailComposeViewControllerDelegate and overriding

iOS 8 TableView overlaps rows after scrolling

隐身守侯 提交于 2019-12-11 08:16:25
问题 Only on iOS 8 and when scrolling do my rows overlap each other. I tried the fixes for similar topics related to iOS 7 but I haven't solved my issue. Please see attached image and my UITableView GetCell method. I'm using MonoTouch but the logic is the same as objective-c. public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath) { UITableViewCell cell = null; cell = tableView.DequeueReusableCell(CELL); if (cell == null) cell = new UITableViewCell

How to get the correct frame of UICollectionViewCell in it's subclass

拜拜、爱过 提交于 2019-12-11 08:08:37
问题 I have a UICollectionView and I set it's cellSize in viewDidLoad : let cellWidth = self.view.frame.width / 2 self.collectionViewFlowLayout.itemSize = CGSize(width: cellWidth, height: 100)` I try to add a gradient layer to my custom UICollectionViewCell . But the frame size is the one I set from storyboard. I can't get the correct, calculated frame size in my UICollectionViewCell subclass's layoutSubviews method. How am I going to get the correct frame size? 来源: https://stackoverflow.com

iOS 8 UIApplicationMain crash since SDK 8 update

余生长醉 提交于 2019-12-11 07:18:27
问题 Since I updated Xcode to 6.0.1 and iOS SDK to 8.0 my app no longer work on the device (running iOS 8 ofc). But it works perfectly in the simulator. The app crashes in UIApplicationMain before any call to the delegate has ever happened. It seems either a value or key is null at CFTypeCollectionRetain. I've tried Recreating certificates/provision profiles. Re-built with/without ARC. Tested both armv7 and arm64 builds. Xcode template (Game) application compiles and runs without probs. Things to

xCode6 incorrect view controller orientation when deployed to iOS7 device

落爺英雄遲暮 提交于 2019-12-11 07:16:10
问题 I'm running into a weird issue when testing an app with deployment target of 7.1 compiled with xCode6 and tested on an iOS 7.1.2 and iOS 8.0.2 devices. A view controller is defined in storyboard with a portrait placeholder. The app supports landscape orientation only. in app delegate: @property (nonatomic,strong) UIViewController* privacyScreen; self.privacyScreen = [kMainStoryboard instantiateViewControllerWithIdentifier:@"privacyScreen"]; [self.window addSubview:self.privacyScreen.view];

URL File Size With NSURLConnection - Swift

坚强是说给别人听的谎言 提交于 2019-12-11 06:54:18
问题 i am trying to get a file size from url before downloading here is the obj-c code NSURL *URL = [NSURL URLWithString:"ExampleURL"]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL]; [request setHTTPMethod:@"HEAD"]; NSHTTPURLResponse *response; [NSURLConnection sendSynchronousRequest:request returningResponse:&response error: nil]; long long size = [response expectedContentLength]; and here is Swift Code var url:NSURL = NSURL(string: "ExmapleURL") var request

How to use UIApplication and openURL and call a swift function on “string” from foo://q=string?

末鹿安然 提交于 2019-12-11 04:45:54
问题 I would like my swift iOS app to call a function on a custom url's query. I have a url like this myApp://q=string . I would like to launch my app and call a function on string . I have already registered the url in Xcode and my app launches by typing myApp:// in the Safari address bar. This is what I have so far in my AppDelegate.swift: func application(application: UIApplication!, openURL url: NSURL!, sourceApplication: String!, annotation: AnyObject!) -> Bool { return true } How do I get