Questions tagged [springboard]

Springboard, or Home Screen is the standard application that manages the iOS home screen. Other tasks include starting WindowServer, launching and bootstrapping applications and setting some of the device's settings on startup.

Springboard, or Home Screen is the standard application that manages the iOS home screen. Other tasks include starting WindowServer, launching and bootstrapping applications and setting some of the device's settings on startup.

129 questions
3
votes
0 answers

Xcode 6.1 iOS 8 App Icon appearing on top left corner of first screen, unable to be moved or deleted

When I install my app on a device using xCode 6.1 and iOS 8, the app icon appears on the top left corner of the first screen, under an existing app icon, and is unable to be moved or deleted, though I can tap it since it peeks out from under the…
SAHM
  • 4,078
  • 7
  • 41
  • 77
3
votes
3 answers

How to get FrontMost App is iOS8

Earlier I was using spring board framework to get frontmost App it is working fine upto ios7 , but in iOS8 . I am not getting frontmost App name. I am using this code . #define SBSERVPATH…
Saroj Kumar ojha
  • 485
  • 4
  • 15
3
votes
0 answers

Need Address Book Access. Where is the PLIST to enable this?

I'm working using the Cucumber-Frank testing Framework which automates BDD Tests for iPhones. I want my device to be able to access a user's contacts, much like how I get their location on launch from SpringBoard. Now, for location, I go to…
gran_profaci
  • 8,087
  • 15
  • 66
  • 99
3
votes
2 answers

How do I make iPhone SpringBoard show two or more icons for one application bundle?

It seems like Info.plist file has an ability to declare different roles for the same application bundle through the UIRoleInfo key. SpringBoard can recognize these roles after installing an app and may display separate icons for each application…
Vadim
  • 9,383
  • 7
  • 36
  • 58
3
votes
1 answer

Implementing the iOS 7 springboard multitasking UI with nested scrollviews

I am trying to create a card layout in my app very much like the multitasking UI in iOS 7. The engineering WWDC video Exploring Scroll Views on iOS 7, notes that they used nested scroll views to accomplish that effect in iOS 7, but did not go into…
Tyler Cloutier
  • 2,040
  • 2
  • 21
  • 31
3
votes
0 answers

How add entitlement via ldid

I have some problems. I want use in my app next function: int SBSLaunchApplicationWithIdentifier(CFStringRef displayIdentifier, Boolean suspended); I add SpringboardServices.framework in my project I add URL Schemes for my app Created the file…
2
votes
1 answer

Can you find individual app usage duration using SpringBoard services framework or other private framework?

I have a background service running on iOS5. I am trying to find the duration for which each foreground application runs. I came across this great post by Vikarti Anatra. how to determine which apps are background and which app is foreground on iOS…
MANDAR
  • 71
  • 4
2
votes
2 answers

XCTest UI Test System PhotoAuth Alert error。[__NSArrayM insertObject:atIndex:]: object cannot be nil (NSInvalidArgumentException)

// tap photo auth entrance XCUIElement *collectionView = app.collectionViews.firstMatch; XCUIElement *authCell = [collectionView.cells elementBoundByIndex:2]; [authCell tap]; // springboard click allow XCUIApplication *springboard =…
林紫一
  • 21
  • 2
2
votes
1 answer

XCUITest Testing Native Callkit UI Using Springboard. How to get the caller label?

I am trying to test VOIP calling in our app. I simulate a call and I try to assert if the correct caller ID is present. However, I can't access the caller name label "Bob" using the following: let springBoard = XCUIApplication(bundleIdentifier:…
Essam Ewaisha
  • 439
  • 5
  • 15
2
votes
0 answers

How to get the UIApplication instance from SBApplication with private api in iOS?

I can get the SBApplication instance of the frontmost application, but I need use the instance of UIApplication, just as the result of [UIApplication sharedInstance], but how can I get the UIApplication instance from SBApplication?Thank…
Suge
  • 2,808
  • 3
  • 48
  • 79
2
votes
0 answers

observeValueForKeyPath getting called many times

I'm updating a jailbreak tweak of mine (GIFPaper) and am having a weird problem. My tweak lets the user put an animated GIF as their background image. Because of how much extra battery this takes up, I'm adding in a feature where the gif is only…
Praxder
  • 2,315
  • 4
  • 32
  • 51
2
votes
2 answers

Springboard-like animation for deleting UICollectionViewCells

I am trying to figure out a way to animate the deletion of a UICollectionViewCell similarly to springboard in iOS 7. The deleted cell should shrink into nothingness and the remaining cells should slide over to fill its place (the sliding is the…
ricky3350
  • 1,710
  • 3
  • 20
  • 35
2
votes
1 answer

iOS - Creating a SpringBoard screen

I'm trying so create a collection view that behaves like the iOS springboard screen. That means that I want to have a collection view, with all of my items, and to have a page controller underneath the grid (just like the springboard screen). I also…
bobsacameno
  • 765
  • 3
  • 10
  • 25
2
votes
2 answers

How to debug "Terminating in response to backboardd's termination"

Currently I am working on app with huge images processing. Nothing unusual, but sometimes in complety random case my app is terminated due to backboardd crash. Without any errors, exceptions etc. I checked memory warings, nothing, no memory warnings…
2
votes
2 answers

What is the iPhone's "Springboard" view exactly?

My question is, is the default iPhone menu a UIcollection view created with storyboarding, or is there more to its abilities? (in order to avoid emulating its functionality)
Morkrom
  • 578
  • 7
  • 26
1 2
3
8 9