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
2
votes
1 answer

hide apps programmatically

I need to hide my app programmatically from the springboard as the "Nike+ iPod" app does. Does anyone know how to achieve this? PS: It's an in-house app and I'm not planning to submit to the app store.
blackmoon
  • 362
  • 1
  • 11
2
votes
1 answer

Display CFUserNotification on iPhone lock screen

I am developing an iPhone app that need to display some message on lock screen. I have tried to use local notification or CFUserNotification but neither of them can display the message on top of the lock screen. For CFUserNotification I have tried…
2
votes
1 answer

Dynamic icon iOS

Possible Duplicate: Changing Icon per Day How to make a dynamic icon? For example in the calendar. Each day the number is changes to the current. Is it possible to implement this in my application?
rubik
  • 572
  • 4
  • 15
2
votes
2 answers

Undefined Symbols for Armv7 (SBApplicationController.h)

Yes, yes I know this question has been asked A THOUSAND times! Let me explain my situation I am making a jailbreak tweak and I need to use the method [SBApplicationCenter sharedInstance]. So I #import. The…
Milk Tea
  • 141
  • 5
2
votes
0 answers

How to use SBAlertItem with locked screen?

I want to use SBAlertItem to show something on the locked screen. Does anyone know how to use this class?
Gazebo
  • 21
  • 3
1
vote
1 answer

iPad webapp flashes when launched from springboard, fine in Safari browser

I'm developing a site for tablets (testing on iPad) using jquery mobile and I've enabled it to be a full screen web app using Works quite nicely, but when you navigate to a new page, there's…
1
vote
1 answer

How do I check if the homescreen is showing on the iPhone?

I want to be able to call SBUIController's activateApplicationAnimated: on an app from my MobileSubstrate dylib. However, that call won't work if the iPhone/iPod is at the lockscreen (or if an app is already open). How do I test to see if the…
Raisin Bran Dan
  • 150
  • 1
  • 7
1
vote
1 answer

Memory Card Game "if else" statement not working (Javascript)

I can't seem to find what is wrong with my code. Here is what the project requires: For this assignment, you’ll be building a memory game in the browser using HTML, CSS, and JavaScript. Your goal is to build a card-based memory game. Players will be…
1
vote
1 answer

my app crash when it return from background because of watchdog

Exception Type: EXC_CRASH (SIGKILL) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d Termination Description: SPRINGBOARD, scene-update…
1
vote
1 answer

Aspen Simulator not working

I have googled for two days and still no luck. I am running a Mac OS X 10.5.5 and the iPhone SDK 3.1 beta, running the Aspen Simulator. My problem is that I can not get any app to work on the Simulator. It builds alright but the simulator shows a…
user790514
  • 137
  • 1
  • 2
  • 12
1
vote
0 answers

saving password for springboard webapps

I'm creating an html application using form authentication. If I open this application using Safari on iOS and complete the login screen, iOS asks me if I want to save my credentials. but it doesn't work the same way if I add this webapp as a link…
PEC
  • 632
  • 1
  • 11
  • 28
1
vote
0 answers

UILocalNotification makes springboard crash

if (application.scheduledLocalNotifications?.count)! > 0 { var notificationArray = application.scheduledLocalNotifications! let cleanCount = notificationArray.count - 1 for index in 0 ..< cleanCount { let…
uwei
  • 127
  • 6
1
vote
1 answer

iOS 9 - UICache Programmatically

I'm trying to reload the icon cache after installing an application through LSApplicationWorkspace. The applications install, but I have to execute "uicache" in mobileterminal to reload the springboard cache. Is there a way I could do this…
Declan Land
  • 639
  • 2
  • 11
  • 27
1
vote
1 answer

app eviction on ios9. how do I check what's causing these?

My (foreground) app is getting evicted off an ios9 device (ipad mini 3 A1599) whenever I'm sitting on camera capture screen. I'm seeing this SpringBoard[54] : Communications error: { count = 1, contents…
Anton Tropashko
  • 5,486
  • 5
  • 41
  • 66
1
vote
1 answer

iOS 7 Jailbreak Tweak need help pulling methods from one header into a %hook of another

Ok so I just recently (within the last couple of months) started playing around with JB tweak dev and am slowly putting the pieces together from opensource that I'm finding on git. However, I have hit somewhat of a coders wall. What I am trying to…
1 2 3
8 9