Swift Generic Service

Hello friends, in this article we will talk about how to create a generic service with Swift. With a generic service structure, we can easily change and manage it when we change something extra in the future. We can make service requests with less code.…

Swift Main Thread Error

Hello friends. In this article, I will tell you about an error that occurs when processing with Swift. This error appears as follows. UILabel.text must be used from main thread only After pulling more data from the internet, if we do something on the UI,…

Swift Currency App MVC ( Part 2 )

Hello friends. In this article, we will write our application, which we handled the service side in our previous article, with MVC. Before that, if we need to talk about MVC; The model consists of View and Controller layers. When an action is done on…

Xamarin Forms Currency Application

Hello friends. In this article, we will make a simple application with Xamarin Forms. In this application, we will instantly take the exchange rates from a website and show them on the screen. At the same time, there will be a refresh feature in the…

Get JSON Data with Xamarin

Hello friends. I had written before about how to withdraw data from JSON, but there was a lot of mail and comment on this topic. That's why I wanted to write a more detailed article, especially Xamarin. Actually, it has nothing to do with Xamarin.…

Asp.Net Core Simple Authentication

Hello friends. In this article, we will talk about how to authenticate in a web application developed with Asp.Net Core. Authentication can save lives in some cases. It is very important for security that only people who know the username and password can access it.…

Xamarin Forms From Master Page to Another Page

Hello friends. In this article, I'm going to talk about a problem that I've been standing on. This is the problem that we cannot go back to the previous page when we go to another page of Master Detail Page in Xamarin.Forms. I'm showing a…

Web Service with ASP.Net Core [1]

It is not really necessary to mention the importance of the web service. Behind every technology used today is a service. Thanks to these services, all technological devices can communicate. For example, Instagram's web service provides us with both Android devices, iOS devices, desktop applications…

Web Service with ASP.Net Core [2]

We pass the last layer, the presentation layer. In this layer, we can use our projects and codes in the other layer by adding Add Reference in the Dependencies section. After adding other layers we have to make a few adjustments in the Startup class.…

Error Could not find a part of the path

I got this error when I wrote a Web API. The project, which worked very well on the local side, made this mistake when I published Azure. He did not see the folder he normally created under the wwwroot folder. If you need to do…