Timer Sound

Cordova, iPhone Soft! Nessun Commento »

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

Cordova/CDVViewController.h file not found in Xcode 7.1

Cordova, iPad, iPhone Soft! Nessun Commento »

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”):

Schermata 2015-10-28 alle 15.01.33

<Google> Cannot find an ad network adapter with the name(s):

iPad, iPhone, Object-C Soft! Nessun Commento »

<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.

clang: error: linker command failed with exit code 1 – library not found

iPad, iPhone, Object-C Soft! Nessun Commento »

– 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.

Forzare HIDE STATUS BAR per iOS7 e iOS6

cocos2d, iPhone, Object-C Soft! Nessun Commento »


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;
}

Warning: file perso nel progetto di XCode

cocos2d, iPad, iPhone, MacOSX, Object-C Soft! Nessun Commento »

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
Home | Graffiti e Disegni | Educazione | Chi siamo | Blog | Progetti | Contatti
RSS Feed Comments RSS Accedi