Suche WatchOS Programmierer

Status
Für weitere Antworten geschlossen.

TI_Gaming_TV

Lt. Junior Grade
Registriert
Jan. 2021
Beiträge
263
Hallo Leute!

Ich suche verzweifelt nach jemanden der kostenlos eine sehr schlichte App für die Apple Watch erstellt.
Eine Vokabel Box App für die Apple Watch.
Nicht zum Vokabel lernen!
Sollte so funktionieren:
Buchstaben auswählen A-Z-> Vokabel finden-> Draufklicken-> Übersetzung
Ohne Design oder sonst was.
Gut wäre halt auch einen verknüpfte Iphone App, wo ich die Vokabel eintragen kann, wenn möglich sogar mit scann Funktion.
Und das alles bis Sontag.
Ich würde es auch selbst machen aber ich habe leider keinen Mac und auch keine Ahnung davon.
Ich würde die App dann in Testflight packen.
Da ich Schüler bin, habe ich nicht so viel Geld zur Verfügung.
Als Bezahlung könnte ich maximal 5-10€ anbieten.
Wenn jemand das machen könnte, wäre ich sehr sehr dankbar.
Andererseits würde ich es auch verstehen, wenn keiner dazu Lust hat.
 
Da wirst du glaube keinen finden. Allein das veröffentlichen einer App im Store kostet Geld bei Apple.
 
  • Gefällt mir
Reaktionen: madmax2010 und LadykillerTHG
TI_Gaming_TV schrieb:
Kostenlos. Und das alles bis Sontag. Oder 5-10 Euro.

Sehr lustig mit deinen Anforderungen.

Hast du mal geschaut, ob es im App Store nicht schon eine brauchbare App für deinen Anwendungszweck gibt?
 
  • Gefällt mir
Reaktionen: jlnprssnr und Mr. Black
Klingt für mich nach einem simplen Nachschlagen von Übersetzungen wie in jeder Übersetzungs-(Web)-App:

Beispiel: https://www.linguee.de/
  • Buchstaben eingeben = Vokabeln werden vorgeschlagen
  • mehr Buchstaben (in richtiger Reihenfolge) eingeben = andere Vokabeln werden vorgeschlagen
  • Klick darauf = Übersetzung
  • Screenshot = "Eintrage/Scan-Funktion" (in extra Ordner unter Bilder speichern?)
Gibt es denn keine Übersetzungs-Apps auf der Apple Watch?
 
Ist das hier "versteckte Kamera"?

Wie hoch sind die Kosten für eine App im Apple App Store?​

Der benötigte Entwickler-Account hat eine jährliche Gebühr von ca. 85 €. Falls Sie Ihre App nur innerhalb Ihres Unternehmens oder Ihrer Organisation einsetzen möchten, müssen Sie sich für das

anmelden, das jährlich ca. 250 € kostet. Mit einem Konto können Sie so viele Anwendungen hochladen, wie Sie möchten.

Für digitale Abonnements oder Käufe nimmt Apple eine Provision von 30 %. Diese Provision wird nach dem ersten Jahr des Abos auf 15 % pro Abonnent im Falle von automatisch verlängerbaren Abonnements gesenkt. Im November 2020 kündigte Apple für 2021 ein

an. Entwickler können sich für das Programm bewerben und sich für eine reduzierte Provision von 15 % qualifizieren, wenn sie im vorangegangenen Kalenderjahr weniger als 1 Million US-Dollar an Erlösen erwirtschaftet haben.
 
  • Gefällt mir
Reaktionen: ultrAslan, jlnprssnr und madmax2010
Ihr versteht nicht. Das ist wichtig. BIS SONNTAG.

Am Montag steht doch ein Test an. :rolleyes:
 
  • Gefällt mir
Reaktionen: iSight2TheBlind und ultrAslan
Zum App Programmieren brauch man auch nicht zwingend einen Mac :)
 
1. Es soll eine Testflight App werden (Kosten = 0)
2. Es handelt sich um Latein. Einfache Übersetzungsapps bieten das nicht an.
3. Möglicherweise schreibe ich Montag eine Arbeit ;)
4.
duAffentier schrieb:
Das kann doch ChatGPT machen. Bissl Coden geht dort auch.
Das ist ne gute Idee
 
@duAffentier
Swift:
import WatchKit
import Foundation

class QuestionInterfaceController: WKInterfaceController {

    @IBOutlet weak var questionLabel: WKInterfaceLabel!
   
    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
       
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
       
        // Load the flashcards
        let flashcards = loadFlashcards()
       
        // Get the question text for the current flashcard
        let questionText = flashcards[currentCardIndex].question
       
        // Set the question label text
        questionLabel.setText(questionText)
    }
   
    func loadFlashcards() -> [Flashcard] {
        // Replace with your own set of flashcards
        return [
            Flashcard(question: "What is the capital of France?", answer: "Paris"),
            Flashcard(question: "What is the largest planet in our solar system?", answer: "Jupiter"),
            Flashcard(question: "What is the currency of Japan?", answer: "Yen")
        ]
    }
   
    @IBAction func showAnswer() {
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
       
        // Push the answer interface controller, passing the current flashcard index as the context
        pushController(withName: "AnswerInterfaceController", context: currentCardIndex)
    }

}

class AnswerInterfaceController: WKInterfaceController {

    @IBOutlet weak var answerLabel: WKInterfaceLabel!
   
    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
       
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
       
        // Load the flashcards
        let flashcards = loadFlashcards()
       
        // Get the answer text for the current flashcard
        let answerText = flashcards[currentCardIndex].answer
       
        // Set the answer label text
        answerLabel.setText(answerText)
    }
   
    func loadFlashcards() -> [Flashcard] {
        // Replace with your own set of flashcards
        return [
            Flashcard(question: "What is the capital of France?", answer: "Paris"),
            Flashcard(question: "What is the largest planet in our solar system?", answer: "Jupiter"),
            Flashcard(question: "What is the currency of Japan?", answer: "Yen")
        ]
    }
   
    @IBAction func showQuestion() {
        // Pop the answer interface controller to go back to the question view
        pop()
    }

}


struct Flashcard {
    var question: String
    var answer: String
}

Recht ok fuer nen 1. versuch. Bisschen debuggen und gut ist.
Nun braucht man nurnoch ein gejailbreaktes iphone oder ein macbook

chr1zZo schrieb:
Zum App Programmieren brauch man auch nicht zwingend einen Mac :)
Hast du schonmal eine App fuers iphone ohne xcode publiziert?
 
chr1zZo schrieb:
Zum App Programmieren brauch man auch nicht zwingend einen Mac :)
Aber zum IOS App programmieren.
Ergänzung ()

madmax2010 schrieb:
@duAffentier
Swift:
import WatchKit
import Foundation

class QuestionInterfaceController: WKInterfaceController {

    @IBOutlet weak var questionLabel: WKInterfaceLabel!
 
    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
    
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
    
        // Load the flashcards
        let flashcards = loadFlashcards()
    
        // Get the question text for the current flashcard
        let questionText = flashcards[currentCardIndex].question
    
        // Set the question label text
        questionLabel.setText(questionText)
    }
 
    func loadFlashcards() -> [Flashcard] {
        // Replace with your own set of flashcards
        return [
            Flashcard(question: "What is the capital of France?", answer: "Paris"),
            Flashcard(question: "What is the largest planet in our solar system?", answer: "Jupiter"),
            Flashcard(question: "What is the currency of Japan?", answer: "Yen")
        ]
    }
 
    @IBAction func showAnswer() {
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
    
        // Push the answer interface controller, passing the current flashcard index as the context
        pushController(withName: "AnswerInterfaceController", context: currentCardIndex)
    }

}

class AnswerInterfaceController: WKInterfaceController {

    @IBOutlet weak var answerLabel: WKInterfaceLabel!
 
    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
    
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
    
        // Load the flashcards
        let flashcards = loadFlashcards()
    
        // Get the answer text for the current flashcard
        let answerText = flashcards[currentCardIndex].answer
    
        // Set the answer label text
        answerLabel.setText(answerText)
    }
 
    func loadFlashcards() -> [Flashcard] {
        // Replace with your own set of flashcards
        return [
            Flashcard(question: "What is the capital of France?", answer: "Paris"),
            Flashcard(question: "What is the largest planet in our solar system?", answer: "Jupiter"),
            Flashcard(question: "What is the currency of Japan?", answer: "Yen")
        ]
    }
 
    @IBAction func showQuestion() {
        // Pop the answer interface controller to go back to the question view
        pop()
    }

}


struct Flashcard {
    var question: String
    var answer: String
}

Recht ok fuer nen 1. versuch. Bisschen debuggen und gut ist.
Nun braucht man nurnoch ein gejailbreaktes iphone oder ein macbook


Hast du schonmal eine App fuers iphone ohne xcode publiziert?

madmax2010 schrieb:
@duAffentier
Swift:
import WatchKit
import Foundation

class QuestionInterfaceController: WKInterfaceController {

    @IBOutlet weak var questionLabel: WKInterfaceLabel!
 
    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
     
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
     
        // Load the flashcards
        let flashcards = loadFlashcards()
     
        // Get the question text for the current flashcard
        let questionText = flashcards[currentCardIndex].question
     
        // Set the question label text
        questionLabel.setText(questionText)
    }
 
    func loadFlashcards() -> [Flashcard] {
        // Replace with your own set of flashcards
        return [
            Flashcard(question: "What is the capital of France?", answer: "Paris"),
            Flashcard(question: "What is the largest planet in our solar system?", answer: "Jupiter"),
            Flashcard(question: "What is the currency of Japan?", answer: "Yen")
        ]
    }
 
    @IBAction func showAnswer() {
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
     
        // Push the answer interface controller, passing the current flashcard index as the context
        pushController(withName: "AnswerInterfaceController", context: currentCardIndex)
    }

}

class AnswerInterfaceController: WKInterfaceController {

    @IBOutlet weak var answerLabel: WKInterfaceLabel!
 
    override func awake(withContext context: Any?) {
        super.awake(withContext: context)
     
        // Get the current flashcard index from the context
        let currentCardIndex = context as! Int
     
        // Load the flashcards
        let flashcards = loadFlashcards()
     
        // Get the answer text for the current flashcard
        let answerText = flashcards[currentCardIndex].answer
     
        // Set the answer label text
        answerLabel.setText(answerText)
    }
 
    func loadFlashcards() -> [Flashcard] {
        // Replace with your own set of flashcards
        return [
            Flashcard(question: "What is the capital of France?", answer: "Paris"),
            Flashcard(question: "What is the largest planet in our solar system?", answer: "Jupiter"),
            Flashcard(question: "What is the currency of Japan?", answer: "Yen")
        ]
    }
 
    @IBAction func showQuestion() {
        // Pop the answer interface controller to go back to the question view
        pop()
    }

}


struct Flashcard {
    var question: String
    var answer: String
}

Recht ok fuer nen 1. versuch. Bisschen debuggen und gut ist.
Nun braucht man nurnoch ein gejailbreaktes iphone oder ein macbook


Hast du schonmal eine App fuers iphone ohne xcode publiziert?
Danke. Nein ich habe noch keine App über Xcode gemacht. Habe ja kein Mac.
 
TI_Gaming_TV schrieb:
Aber zum IOS App programmieren.
wieso habe ich das früher unter Windows gemacht :D ? gerade mal gegoogelt, geht immer noch ^^
 
TI_Gaming_TV schrieb:
3. Möglicherweise schreibe ich Montag eine Arbeit ;)
Dann setz dich hin und lern Latein.

So schwierig ist das nicht, wenn man ein wenig des Deutschen und des Englischen mächtig ist, weil viele Wörter finden in beiden Sprachen noch Verwendung. Aus persönlicher Erfahrung kann ich da sagen, dass, wenn sich das deutsche und englische Wort sehr unterscheiden, das Englische tendenziell eher eine lateinische Wurzel hat.
 
  • Gefällt mir
Reaktionen: chrigu und 00Julius
TI_Gaming_TV schrieb:
3. Möglicherweise schreibe ich Montag eine Arbeit ;)
Dann kann man ja nur auf Lehrer ohne Digitalkompetenz hoffen.
Ich würde eine große Uhr am Kartenständer aufhängen und alle Armbanduhren in die Tasche verbannen. :evillol:
 
  • Gefällt mir
Reaktionen: iSight2TheBlind
00Julius schrieb:
Dann kann man ja nur auf Lehrer ohne Digitalkompetenz hoffen.
Viele Lateinlehrer haben gefühlt Latein noch direkt von Cicero gelernt, da ist es mit der Digitalkompetenz nicht so weit :D
 
  • Gefällt mir
Reaktionen: iSight2TheBlind und 00Julius
Also bitte, wenn du schon cheatest für ne Klausur, dann mach das gefälligst selbst. Haben wir damals in Latein auch ohne technischen Schnickschnack geschafft.
 
  • Gefällt mir
Reaktionen: duAffentier, ultrAslan, jlnprssnr und 3 andere
Fällt gar nicht auf wenn man ständig an der Uhr fummelt. Ein Thread hat nicht gereicht?
 
  • Gefällt mir
Reaktionen: duAffentier, ultrAslan, madmax2010 und 2 andere
Genau.

Und deshalb ist auch hier zu.
 
  • Gefällt mir
Reaktionen: Limmbo, jlnprssnr, Enotsa und eine weitere Person
Status
Für weitere Antworten geschlossen.
Zurück
Oben