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

iPad in Kiosk mode with custom launcher

i'm looking for solution to convert iPad to media device. Target - it should be able to play videos music and some games. With videos and music - there is no problem. I can write app with video and audio players, add media content to it and set lock…
OgreSwamp
  • 4,602
  • 4
  • 33
  • 54
0
votes
0 answers

Sometimes cannot launch an application programmatically on jailbroken device

NSInteger error = SBSLaunchApplicationWithIdentifier((CFStringRef)bundleID, NO); NSLog(@"launching [%@] error: [%d]", bundleName, error); if (error) { CFStringRef errorStr = SBSApplicationLaunchingErrorString(error); DLog(@"launching %@…
BB.
  • 707
  • 2
  • 11
  • 22
0
votes
0 answers

How to know if an app is active in iOS (Jailbroken)?

I want to check if the specified with identifier app is active and at front most, I used like below but it got isRunning status only, how can I know if the app is at front most?Thank you. #import #import…
Suge
  • 2,808
  • 3
  • 48
  • 79
0
votes
1 answer

Creating a UIView jailbreak tweak

I am trying to develop a jailbreak tweak using iOSOpenDev and the logos template. I am trying to create a UIView when the user goes to the Springboard. (I believe the Springboard Class is SBUIController And I think the method is -…
0
votes
1 answer

EKEventStore causes SpringBoard crash

I build an application that fetches ekevents from calendar (by EKEventStore predicateForEventsWithStartDate:endDate:calendars:) and synchronize app-events with calendars (with EKEventStore saveEvent:span:commit:error:). I use a static reference to…
Nico
  • 1,580
  • 14
  • 21
0
votes
0 answers

SpringboardServices : Get application name from application identifier

How can i use SpringboardServices, currently it is showing linking error. NSString* appName = (__bridge NSString *)(SBSCopyLocalizedApplicationNameForDisplayIdentifier((__bridge CFStringRef)(runningAppId)));*
ManiaChamp
  • 849
  • 7
  • 22
0
votes
2 answers

App that runs in background and injects touches to springboard without private API or jailbreaking

I am trying to write an app that runs in the background and injects touches to the springboard or other apps. I cannot use any private API and no jailbreaking. The app needs to be approved for the AppStore. I would appreciate if you could suggest a…
0
votes
1 answer

how to design uicollectionviewcell's pushing depends on cell type?

Good day! i have uicollectionview, in cells are showing different documents... is it possible to design pushing cell and show different view controllers depends on cell(document) type?
0
votes
1 answer

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 extremely crucial. I noticed while jailbreaking…
0
votes
3 answers

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 applicationDidEnterBackground implementation?
Geri Borbás
  • 15,810
  • 18
  • 109
  • 172
0
votes
1 answer

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 code). How can I display a view if I don't have a…
0
votes
3 answers

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 AppTag hidden
zzzzz
  • 1,209
  • 2
  • 18
  • 45
0
votes
6 answers

Disable iphone home button in app, is it possible?

I want to develop a screensaver-like app where the only way of getting back to the springboard is entering a code. Therefore I would need the Home Button action to be ignored, that is that when the user presses the button nothing happens..or…
nico
  • 9,668
  • 8
  • 26
  • 28
0
votes
1 answer

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 doesn't search the application. How can I make…
Umair
  • 65
  • 1
  • 8
0
votes
1 answer

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.
1 2 3
8
9