Nov 06
Timer Sound is an easy to use special app for high intensity interval Training.
Whether you workout regularly, practice meditation or simply need a tool to track your working hours, Timer Sound is for you!
Set as many timers as desired, save the settings & use the customized timers again and again.
You can also create personalized interval workouts with warm-up, workout & rest periods and cool down!
https://itunes.apple.com/it/app/timer-sound/id1241352438?mt=8
Ott 26
Come succede sempre ad un cambio di Xcode, qualcosa non va, e questa volta nel fare l’archivio del progetto non mi trovava il file in oggetto.
Ho risolto aggiungendo questa stringa nella configurazione del progetto:
Build Settings -> Header Search Paths
"$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include"
Tutto a posto.
Se l’errore persiste stai attento a questo (non ho aggiunto tutte le righe, ma solo “$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include”):
Ott 25
<Google> Cannot find an ad network adapter with the name(s): (
GADMAdapterIAd
). Remember to link all required ad network adapters and SDKs, and set -ObjC -all_load in the 'Other Linker Flags' setting of your build target.
Il problema è stato risolto aggiungendo ‘libAdapterIAd.a’ e ‘ iAds.framework’.
La prima libreria si trova qui, mentre il secondo è presente nella lista dei “Link Binary” di “Build Phases” del progetto.
Cancellare e ricompilare.
Buon lavoro.
Ott 25
– problema:
ld: library not found for -lDMReader
clang: error: linker command failed with exit code 1 (use -v to see invocation)
– soluzione:
aggiungere in “Library Search Paths” di “Build Settings” la cartella dove si trova la libreria.
Set 20
Con il nuovo rilascio del sistema operativo di Apple bisogna fare qualche aggiustamento qua e la nei vecchi progetti.
Uno di questi è quello di nascondere la status bar:
//viewDidload
if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
// iOS 7
[self prefersStatusBarHidden];
[self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
} else {
// iOS 6
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];
}
// Add this Method
- (BOOL)prefersStatusBarHidden
{
return YES;
}
Giu 29
Capita di cancellare un file dal progetto di XCode e di ritrovarsi il messaggio di warning, anche se il file è stato rimosso correttamente.
Il problema è che il file è stato rimosso, ma SVN pensa che ancora ci sia.
La cosa più semplice da fare è aprire il terminale e individuare la cartella dove si trovava il file (cd / pathToYourFolder) e digitare il seguente script:
svn delete nameOfMissingFile
Se il nome contiene la “@”:
svn delete [email protected]@
Per GIT repositories:
git rm nameOfMissingFile
Ultimi Commenti