skip to Main Content

Ios swift – Adding Constraints to view, whose topAnchor's is bottomAnchor of UIView with dynamic height, Swift, UIKit, Programmatic

I've created a UIView, which has buttons in it. I set the constraints like this : NSLayoutConstraint.activate([ sampleView.topAnchor.constraint(equalTo: topView.bottomAnchor, constant: 20), sampleView.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 16), sampleView.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: -16), ]) Not added any height or bottom anchor as I want…

VIEW QUESTION

Protect OpenAI key using Firebase function

I have an app that uses OpenAI and like many others my key was recently compromised. I have this simple code: const functions = require('firebase-functions'); const OpenAI = require("openai"); const openai = new OpenAI({ apiKey: functions.config().openai.key, }); exports.generateText = functions.https.onCall(async…

VIEW QUESTION
Back To Top
Search