Gramota app v1.4 is released.
What's New in Version 1.4
* Speed-up word checking
* Bugfixing
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
FullScreenSoftware
It's FullScreenSoftware company's blog. FullScreenSoftware is the software development company. We create iOS apps. We can develop iOS app for you. We can test your app.
Tuesday, July 31, 2012
Saturday, July 7, 2012
NewControls app v1.2
NewControls app v1.2 is released.
What's New in Version 1.2
- New events: volume DOWN => volume UP clicks sequense, volume UP => volume DOWN clicks sequense.
- New actions: shuffle, skip N seconds
- Bug fixing.
Tuesday, April 3, 2012
Gramota App v1.3
Gramota app v1.3 is released.
What's New in Version 1.3
* Bugfixing
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
What's New in Version 1.3
* Bugfixing
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
Saturday, December 3, 2011
Gramota App v1.2
Gramota app v1.2 is released.
What's New in Version 1.2
* Bugfixing
* Added "Dictionary of Proper Names" support
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
What's New in Version 1.2
* Bugfixing
* Added "Dictionary of Proper Names" support
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
Thursday, October 6, 2011
Gramota App v1.1
Gramota app v1.1 is released.
What's New in Version 1.1
* Rate Gramota app ("Credits" screen)
* Bug fixing.
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
What's New in Version 1.1
* Rate Gramota app ("Credits" screen)
* Bug fixing.
Gramota App on FullScreenSoftware site. Gramota App in iTunes Store.
Friday, September 30, 2011
NewControls app v1.1
NewControls app v1.1 is released.
What's New in Version 1.1
What's New in Version 1.1
- 'Talking clock' can tell time every hour.
- The app can ignore broken button's autoclicks (prevent undesired volume changes).
- New lullaby mode: "night tale" - the app remembers playback position when lullaby ends, thus next time lullaby will continue from last position.
- Bug fixing.
Monday, September 5, 2011
Gramota App v1.0
Gramota App |
Gramota is a small free app for Russian language learners and for everyone who wants to know how to write a word in Russian. The app supports history and spell-checking with mask ('*' and '?' substitution supported). App displays all information about Russian words: correct pronunciation, stress, cases/conjugations, etymology, meaning. The app uses wiktionary.org and gramota.ru sites. What spelling is correct for a word? One solid word or two words: 'натощак' or 'на тощак'? Check - 'на*тощак'! Use hyphen or not: 'как-бы' or 'как бы' or 'какбы'? Check - 'как*бы'! What letter should be used: 'приДти' or 'приЙти'? Check - 'при?ти'! What syllables are stressed: 'дОговор' or 'договОр'? Check - 'договор'! What does 'настропалить' mean? Check - 'настропалить'!
|
Sunday, September 4, 2011
XCode 4 and Localizable.strings issue
It was very annoying issue. XCode doesn't copy Localizable.strings files into app bundle. First time i used workaround: delete Localizable.strings with languages and add to project again, but when i made build for distribution i found out that Localizable.strings files are not copied in app bundle! I tried all possible and impossible combinations: remove from "Copy bundle resources" (Target\Build phases), manually add Localizable.strings into "Copy bundle resources", different "Localization native development region" strings, different place in project hierarchy, different encodings (should be UTF-16), XCode 4.2 beta, XCode 4.0 and other. It was unsuccessful. I have: correct Localizable.strings, correct instruction to copy files in "Copy bundle resources", no warnings in project. I don't have: Localizable.strings files in app bundle.
After 2 days i found solution! It was very simple:
1. goto Target\Build phases
2. click "Add build phase" button and select "Copy files"
3. select "Resources" in "Copy files" phase
4. add Localizable.strings
5. make build for distribution (Project\Archive).
5. check app folder for all Localizable.strings files - PROFIT!
:-)
After 2 days i found solution! It was very simple:
1. goto Target\Build phases
2. click "Add build phase" button and select "Copy files"
3. select "Resources" in "Copy files" phase
4. add Localizable.strings
5. make build for distribution (Project\Archive).
5. check app folder for all Localizable.strings files - PROFIT!
:-)
Thursday, August 25, 2011
performSelector: withObject: afterDelay: issue
I have discovered interesting issue today. I have the method for updating some info:
- (void) updateObject { // updating code // schedule next updating [self performSelector:@selector(updateObject) withObject:nil afterDelay:4.0]; NSLog(@"done"); }I figured out that updateObject is called twice! Second call was made immediately after first call was finished.
Friday, August 12, 2011
Subscribe to:
Posts (Atom)