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.

learn more… | top users | synonyms

0
votes
1answer
26 views

Running code at boot?

I am creating a rather ambitious project for the iOS and I need to run some code during the boot stage, before the springboard actually launches. I understand that this can harm the device, but it is ...
-1
votes
0answers
36 views

How to modify iphone's incomming call screen? Jailbroken [closed]

My iPhone was jailbroken, and my app has hooked to SpringBoard or MobilePhone.app. I just want to modify the top big label(number label or name label) of incomming call screen. I want to modify the ...
0
votes
2answers
43 views

How much time do I have after applicationDidEnterBackground invoked?

I want to send a timestamp to a remote server, and wait for the callback of success, then store the timestamp locally, if remote server did not respond. Is it something that I could put into ...
0
votes
2answers
197 views

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)
0
votes
1answer
121 views

Displaying a UIView in a MobileSubstrate tweak?

I am making an iOS MobileSubstrate Tweak and I have hooked Springboard and the launch() method. Now I want to display a view with a button and if it is clicked it would call the %orig (the original ...
1
vote
0answers
64 views

MobileSubstrate: How to make an object globally accessible

I'm currently working on a MobileSubstrate extension using substrate.h and I need an object to be accessible from every bundle. As far as I know (and I tried), if I just put a static variable inside ...
0
votes
3answers
75 views

How can I add the following lines to my plist file?

I have seen a lot of tutorials about adding to a plist file but I can't seem to correctly insert nested tags into the plist file. I want to add the following lines to my Info.plist file ...
1
vote
1answer
486 views

Springboard crash when app is restored from push notification from GameCenter

I'm developing a turn based game using GameCenter and constantly recieving a SpringBoard crash below. Using ARC. Iphone 4 on ios 6.0.1 Please help to understand the reason, i've been fighting with it ...
2
votes
2answers
849 views

iOS event/notification for network activity up/down/off

I want a event/callback for my iOS app when the network activity goes from none to up (and the other way around). Similar to how Android does with onDataActivity(). I'm not talking about Reachability ...
0
votes
0answers
157 views

Application crashing for unknown reason “SpringBoard's termination”

I am developing an app that plays audio using AVPlayer, sometimes when the app is playing (not every time) the device restarts with the message "Terminating in response to SpringBoard's termination". ...
0
votes
1answer
187 views

iOS: animation icon model “springboard”

I want to know if is possible simulate the little movement of icons in iPhone springboard when I do a long press in one of them. Can you help me?
1
vote
1answer
279 views

How to launch Applications without URL Schemes and without touching the icon on a non jailbroken iDevice?

I like to build an app to view specific apps without URL scheme I have heard about a Framework called SpringBoardServices but there is always a Linker Error As far I use this code with the ...
1
vote
1answer
209 views

hide apps programatically

I need to hide my app programatically 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 ...
1
vote
3answers
108 views

How to convert a normal application icon into a downloading icon on iPhone's SpringBoard?

I'm writing a jailbroken app in iPhone, I'd like to add a updating mechanism for this app and it works like the updating via App Store. I know that every icon on SpringBoard is a SBApplicationIcon ...
2
votes
1answer
257 views

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 ...
0
votes
0answers
133 views

IOS SBApplicationIcon Launch Get DisplayName

I hooked Launch but I didn't get displayName. Please help me. Mycode is import <SpringBoard/SpringBoard.h> %hook SBApplicationIcon -(void)launch { NSString *app= [self displayName]; ...
0
votes
0answers
43 views

How to circumvent Spingboard termination during iphone retina simulation

I just finished building my interface, which includes an image-rich UIScrollview, for a simple app. When I run my application using the iPhone simulator (non-retina) everything works great. However, ...
0
votes
0answers
135 views

Screenshot won't generate GSEvent

I have a trouble - when I tried to press and hold some button (with embossed down effect) and then take screen shot (by clicking home and lock button in same time) the button don't pressed up, and is ...
1
vote
1answer
678 views

How to use Springboard Services Framework to use SBSLaunchApplicationWithIdentifier

I would like to use the Springboard services framework to make use of the following code. SBSLaunchApplicationWithIdentifier(CFSTR("com.apple.preferences"), false); However when I download the ...
1
vote
1answer
289 views

Dynamic icon iOS [duplicate]

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 ...
0
votes
0answers
154 views

How to remove push notification from iOS 5 Notification Center one be one?

is it possible to remove push notification from iOS 5 Notification Center one be one? If I am setting application badge number =0, all unread notifications are also getting removed. Please help me to ...
0
votes
0answers
108 views

iOS SpringBoard SBTelephonyManager link error

I want use SpringBoard's dump file SBTelephonyManager to set the device in Airplane mode, but I found it results in an error - it can't find the framework. Which framework will be used?
10
votes
6answers
3k views

iOS without Springboard: Terminating since there is no system event server

I'm attempting to create a simple ("Hello World") application using IB vs Springboard. Once I added a button with its connection to an action routine, I get the following: Terminating since there ...
1
vote
1answer
130 views

Where can i find an open source iOS 5 templates?

To be more specific, i am looking for a 'springboard' template. I have seen a couple of GitHub projects which allow creating similar controls in less time, but none for the springboard( Old Facebook ...
1
vote
1answer
240 views

Level selection view - similiar to Angry Bird's

I am making game and need to prepare view for level selection. Could you recommend me some opensource library which could I use? I need icons to vibrate after long pressing one of them, some ...
0
votes
1answer
154 views

info.plist preferences for application search on iPhone

My application name is TestApplication which is my bundle display name and my application PRODUCTNAME is MyTestApplication. When I search my application on Simulator/Device with keyword "My" it ...
0
votes
1answer
297 views

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 ...
-3
votes
2answers
313 views

iPhone : how to kill background running application from springboard?

How to kill all applications which are running into background in springboard. is there any way to this?? Thanks in advance
0
votes
1answer
244 views

Can my app’s name on the Springboard span two lines?

How to show the icon file name,that is app name below the icon on iphone screen is not showing full name, it is coming with dots.How to show the full name.
-3
votes
2answers
275 views

respring after removing tweak [closed]

How can I make cydia respring SpingBoard after removing my NC widget ? i.e. How to make "respring SpringBoard" button appear instead of "return to cydia"? Thank you
1
vote
0answers
84 views

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?
0
votes
2answers
314 views

The device freezes when there are a lot of UIView animation running with UILabels using shadows and I press the Home button

I'm having some problems in my application. The error occurs when I'm in a screen with a lot of icons (UIViews), each one running a animation. This screen reminds the springboard screen, and the ...
3
votes
3answers
1k views

iPhone App name (springboard and target) list of allowed special characters

I'm looking for a set of chars that can be used to include in the app name for app store submission. So far I know that alphanumeric characters are ok in the app name that is displayed on the ...
0
votes
0answers
211 views

block incoming alerts on iphone springboard

I am trying to intercept incoming SMS in iOS 5 and the code is HOOK(CKSMSService,_receivedMessage$replace$postInternalNotification$,void,CKSMSRecordRef arg,BOOL arg2,BOOL arg3){ //NSLog(@"received ...
7
votes
2answers
472 views

Additional Icon in App Name/Lable

How can I add an additional icon to the Name/Lable of app, just the like snapshot of my test device Home screen (see highlighted Water app, in the attached screenshot). You can see that there is a ...
0
votes
0answers
251 views

Can't find SBCallAlertDisplay in ios5 SpringBoard headers

I want to show related city name on call screen before phone number when incoming call. Now, I detected incoming number like this: id ct = CTTelephonyCenterGetDefault(); ...
0
votes
1answer
489 views

How to get whether iPhone screen is locked or unlocked programmatically using springboard framework

How to get whether iPhone screen is locked or unlocked programmatically using springboard framework in non-jailbroken device? Any help will be really appreciated.
-1
votes
2answers
301 views

Springboard-like menu to select other views in storyboard

I use a storyboard and I want to make a springboard menu like that ...
1
vote
1answer
238 views

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 <meta name="apple-mobile-web-app-capable" content="yes" /> Works ...
0
votes
0answers
114 views

Change functionality of Close button of SMS interrupt [Iphone]

Please help. The application I am developing supports multitask. SMS can be received and the prompt appears at anytime while the application is running. When an SMS interrupt is received, what I want ...
0
votes
1answer
721 views

iOS 5.0.1: SpringBoard crashed after touching the push notification banner

I specified a custom sound about 20 seconds of my application push. When the push sound had been played for a long time (more than 15 seconds), I touched the banner of push notification, and the ...
-1
votes
1answer
116 views

iPhone tweak - how to see if user is on home screen?

I am creating a tweak and I need to check if the user is on the home screen or springboard or if they are in an app, as in if the user is on the springboard do this, else, do something else, is there ...
1
vote
1answer
164 views

UIApplicationWillTerminate: NSNotificationCenter vs Application Delegate

This is just a theoretical question. It was born from a real problem in my app, but I re-designed the problem out of the application. But the question remains: If in my app delegate I write my ...
0
votes
1answer
562 views

iOS 5, SpringBoard, SBCallAlert Alternative

Anyone knows an alternative to the SBCallAlert.h within the iOS 5 headers? I need to know when an incoming call is received and do few actions before. I used to do it in iOS 4 with SBCallAlert, ...
0
votes
2answers
983 views

iPhone - Change icon of the app programaticaly at runtime

I've made lots of searches and I can read that changing the app icon programaticaly at runtime is not possible, at least since iOS 3.0. But... I regulary can see on "App" websites apps that can put ...
3
votes
1answer
885 views

iPad App crashes only when it is launched manually (from springboard). Memory issue suspected

I have been trying to solve this problem for 2 days now and it is driving me crazy. When Xcode launches the app it works fine, but If I manually launch the app from Springboard it crashes. The console ...
2
votes
0answers
1k views

Springboard like appearance without Three20 or Nimbus

I want to make a button launcher just like Springboard / Facebook / Google+. But, I don't want to: use Three20 - it looks perfect except for the horrid coding experience due to documentation. (I ...
0
votes
0answers
186 views

Springboard like effect crash

So I'm tring to make a springboard like view, and here is my code. It works fine at making the new ViewController show up, but as soon as the view shows up, if I try to interact with the new VC, it ...
0
votes
0answers
430 views

APN causing springboard crash when app is backgrounded

APN notification comming into device causing a springboard SIGABRT crash but only if the app is backgrounded. Running 5.0 (9a334). Device Console showed this interesting line: Oct 28 12:36:03 ...
1
vote
1answer
339 views

Import SpringBoard Headers in bundles (Jailbreak)

So I have a theos notification center project and I want to import SpringBoard headers. If I just import, it returns an error that the file doesn't exist. If I then add the headers to the project's ...

1 2